Skip to content

Commit

Permalink
client: fix dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGamerBlue committed Feb 27, 2021
1 parent 3aae0fe commit 2431527
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runelite-client/runelite-client.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ dependencies {
exclude(group = "org.slf4j")
}
implementation(group = "org.pf4j", name = "pf4j-update", version = "2.3.0")
implementation(group = "com.google.archivepatcher", name = "archive-patch-applier", version= "1.0.4")
// implementation(group = "com.google.archivepatcher", name = "archive-patch-applier", version= "1.0.4")
implementation(group = "net.runelite.gluegen", name = "gluegen-rt", version = "2.4.0-rc-20200429")
implementation(group = "net.runelite.jogl", name = "jogl-all", version = "2.4.0-rc-20200429")
implementation(group = "net.runelite.jocl", name = "jocl", version = "1.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
*/
package net.runelite.client.rs;

import com.google.archivepatcher.applier.FileByFileV1DeltaApplier;
import com.google.common.base.Strings;
import com.google.common.hash.Hashing;
import com.google.common.hash.HashingOutputStream;
Expand Down Expand Up @@ -389,6 +388,7 @@ private void updateVanilla(RSConfig config) throws IOException, VerificationExce

private void applyPatch() throws IOException
{
/*
byte[] vanillaHash = new byte[64];
byte[] appliedPatchHash = new byte[64];
Expand Down Expand Up @@ -449,6 +449,7 @@ private void applyPatch() throws IOException
updateCheckMode = VANILLA;
return;
}
*/
}

private ClassLoader createJarClassLoader(File jar) throws IOException, ClassNotFoundException
Expand Down

0 comments on commit 2431527

Please sign in to comment.