Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
tr7zw committed Jun 16, 2024
1 parent 0057d3f commit 25c59b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -432,11 +432,11 @@ public ClassWrapper getParentClassWrapper() {
return parentClassWrapper;
}

private static class Since {
final MinecraftVersion version;
final String name;
public static class Since {
public final MinecraftVersion version;
public final String name;

private Since(MinecraftVersion version, String name) {
public Since(MinecraftVersion version, String name) {
this.version = version;
this.name = name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
Expand Down

0 comments on commit 25c59b0

Please sign in to comment.