Ver Fonte

Add newline

Lortseam há 4 anos atrás
pai
commit
152dc6b72c

+ 2 - 1
lib/src/main/java/me/lortseam/completeconfig/data/Entry.java

@@ -206,7 +206,8 @@ public class Entry<T> extends EntryBase<T> implements DataPart {
     public void apply(CommentedConfigurationNode node) {
         try {
             T value = (T) node.get(type);
-            // value could be null despite the virtual() check (see https://github.com/SpongePowered/Configurate/issues/187)
+            // value could be null despite the virtual() check
+            // see https://github.com/SpongePowered/Configurate/issues/187
             if(value == null) return;
             setValue(value);
         } catch (SerializationException e) {