Skip to content

Commit

Permalink
Fix for "Redundant specification of type arguments" error
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveeclipse committed May 10, 2023
1 parent bfb5504 commit 69d9872
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
public class ImageDescriptorRegistry {

private Map<ImageDescriptor, Image> fRegistry = Collections.synchronizedMap(new HashMap<ImageDescriptor, Image>(10));
private Map<ImageDescriptor, Image> fRegistry = Collections.synchronizedMap(new HashMap<>(10));
private Display fDisplay;

/**
Expand Down

0 comments on commit 69d9872

Please sign in to comment.