Browse Source

Add newline

Lortseam 4 years ago
parent
commit
152dc6b72c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lib/src/main/java/me/lortseam/completeconfig/data/Entry.java

+ 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) {