소스 검색

Add newline

Lortseam 4 년 전
부모
커밋
152dc6b72c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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) {