Index: trunk/scripts/TagInfoExtract.java
===================================================================
--- trunk/scripts/TagInfoExtract.java	(revision 19181)
+++ trunk/scripts/TagInfoExtract.java	(revision 19184)
@@ -615,7 +615,8 @@
 
             static Set<TagInfoTag.Type> forPresetTypes(Set<TaggingPresetType> types) {
-                return types == null ? new EnumSet<>() : types.stream()
+                final EnumSet<TagInfoTag.Type> enums = EnumSet.noneOf(TagInfoTag.Type.class);
+                return types == null ? enums : types.stream()
                         .map(Type::forPresetType)
-                        .collect(Collectors.toCollection(() -> EnumSet.noneOf(Type.class)));
+                        .collect(Collectors.toCollection(() -> enums));
             }
         }
