Skip to content

Commit

Permalink
remove CN
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgazul committed May 27, 2024
1 parent 74a8ed1 commit 98b1e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/mohistmc/libraries/DefaultLibraries.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class DefaultLibraries {

public static void loadDefaultLibs() throws Exception {
System.out.println(i18n.get("libraries.checking.start"));
String url = mirror.equals("") ? (i18n.isLang("CN") ? "https://libraries.mohistmc.cn:25119/releases/" : "https://maven.mohistmc.com/") : mirror;
String url = mirror.isEmpty() ? "https://maven.mohistmc.com/" : mirror;
LinkedHashMap<File, String> libs = getDefaultLibs();
AtomicLong currentSize = new AtomicLong();
Set<File> defaultLibs = new LinkedHashSet<>();
Expand Down

0 comments on commit 98b1e98

Please sign in to comment.