RS-Client: Refactoring (also gradle compiler args) (#1236)

* gradle: compiler args for mixins/rs-client

* rs-client: yes

* rs-client: no
This commit is contained in:
Lucwousin
2019-08-02 22:01:00 +02:00
committed by Kyleeld
parent 2057fdfd41
commit 11f3b74687
124 changed files with 6121 additions and 5998 deletions

View File

@@ -23,15 +23,15 @@ public class WorldMapArchiveLoader {
@Export("percentLoaded")
int percentLoaded;
@ObfuscatedName("i")
@Export("isLoaded")
boolean isLoaded;
@Export("loaded")
boolean loaded;
@ObfuscatedSignature(
signature = "(Lhp;)V"
)
WorldMapArchiveLoader(AbstractArchive var1) {
this.percentLoaded = 0;
this.isLoaded = false;
this.loaded = false;
this.archive = var1;
}
@@ -46,7 +46,7 @@ public class WorldMapArchiveLoader {
if (var1 != this.cacheName) {
this.cacheName = var1;
this.percentLoaded = 0;
this.isLoaded = false;
this.loaded = false;
this.load();
}
}
@@ -81,7 +81,7 @@ public class WorldMapArchiveLoader {
}
this.percentLoaded = 100;
this.isLoaded = true;
this.loaded = true;
}
return this.percentLoaded;
@@ -92,9 +92,9 @@ public class WorldMapArchiveLoader {
signature = "(I)Z",
garbageValue = "1906092832"
)
@Export("getIsLoaded")
boolean getIsLoaded() {
return this.isLoaded;
@Export("isLoaded")
boolean isLoaded() {
return this.loaded;
}
@ObfuscatedName("p")