Skip to content

Commit

Permalink
use jdk6 style
Browse files Browse the repository at this point in the history
  • Loading branch information
skel2007 authored and frantuma committed Mar 8, 2023
1 parent 4dcc2cc commit 26418e9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,18 +182,18 @@ public ObjectProperty createProperty() {
* Allows to exclude specific classes from KEY_CLASSES mappings to primitive
*
*/
private static Set<String> customExcludedClasses = ConcurrentHashMap.newKeySet();
private static Set<String> customExcludedClasses = Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());

/**
* Allows to exclude specific classes from EXTERNAL_CLASSES mappings to primitive
*
*/
private static Set<String> customExcludedExternalClasses = ConcurrentHashMap.newKeySet();
private static Set<String> customExcludedExternalClasses = Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());

/**
* Adds support for custom mapping of classes to primitive types
*/
private static Map<String, PrimitiveType> customClasses = new ConcurrentHashMap<>();
private static Map<String, PrimitiveType> customClasses = new ConcurrentHashMap<String, PrimitiveType>();

/**
* Alternative names for primitive types that have to be supported for
Expand Down

0 comments on commit 26418e9

Please sign in to comment.