Skip to content
This repository was archived by the owner on Jul 31, 2022. It is now read-only.

Commit 3d93dc3

Browse files
committed
fix merge
1 parent a4dde07 commit 3d93dc3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/main/java/com/kttdevelopment/simplehttpserver/handler/DirectoryEntry.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -317,16 +317,17 @@ private static String getContext(final String path){
317317

318318
//
319319

320+
320321
@Override
321322
public String toString(){
322323
return
323-
"DirectoryEntry" + "{" +
324-
"isWalkthrough" + "=" + isWalkthrough + ", " +
325-
"isFilePreloaded" + "=" + isFilesPreloaded + ", " +
326-
"directory" + "=" + directory + ", " +
327-
"(preloaded) files" + "=" + files + ", " +
328-
"adapter" + "=" + adapter +
329-
"}";
324+
"DirectoryEntry" + '{' +
325+
"directory" + '=' + directory + ", " +
326+
"adapter" + '=' + adapter + ", " +
327+
"loadingOption" + '=' + loadingOption + ", " +
328+
"isWalkthrough" + '=' + isWalkthrough + ", " +
329+
"preloadedFiles" + '=' + preloadedFiles +
330+
'}';
330331
}
331332

332333
}

0 commit comments

Comments
 (0)