File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/java/net/ornithemc/keratin Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ public KeratinGradleExtension(Project project) {
237237 return info ;
238238 });
239239 this .versionDetails = new Versioned <>(minecraftVersion -> {
240- File file = this .files .getGlobalCache ().getMetadataCache ().getVersionDetailJsons (minecraftVersion );
240+ File file = this .files .getGlobalCache ().getMetadataCache ().getVersionDetailJson (minecraftVersion );
241241
242242 if (cacheInvalid || project .getGradle ().getStartParameter ().isRefreshDependencies () || !file .exists ()) {
243243 VersionsManifest manifest = getVersionsManifest ();
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ interface MetadataCacheAccess {
3535
3636 File getVersionInfoJson (String minecraftVersion );
3737
38- File getVersionDetailJsons (String minecraftVersion );
38+ File getVersionDetailJson (String minecraftVersion );
3939
4040 }
4141
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ public File getVersionInfoJson(String minecraftVersion) {
137137 }
138138
139139 @ Override
140- public File getVersionDetailJsons (String minecraftVersion ) {
140+ public File getVersionDetailJson (String minecraftVersion ) {
141141 return file ("%s-details.json" .formatted (minecraftVersion ));
142142 }
143143 }
You can’t perform that action at this time.
0 commit comments