File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
src/main/java/net/minecraftforge/util/hash Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2323
2424dependencies {
2525 compileOnly libs. nulls
26-
27- implementation projects. logUtils
2826}
2927
3028tasks. named(' jar' , Jar ) {
Original file line number Diff line number Diff line change 44 */
55package net .minecraftforge .util .hash ;
66
7- import net .minecraftforge .util .logging .Log ;
87import org .jetbrains .annotations .NotNullByDefault ;
98import org .jetbrains .annotations .Nullable ;
109
@@ -100,8 +99,9 @@ public HashStore load(File file) {
10099 String [] split = line .split ("=" );
101100 oldHashes .put (split [0 ], split [1 ]);
102101 }
103- } catch (IOException e ) {
104- Log .warn ("Failed to read cache file. It will be ignored. : " + e .getMessage ());
102+ } catch (IOException ignored ) {
103+ // TODO [HashUtils] Make a way to properly inform consumer on cache miss
104+ //System.err.println("Failed to read cache file. It will be ignored. : " + e.getMessage());
105105 }
106106
107107 return this ;
You can’t perform that action at this time.
0 commit comments