From: Jay Freeman (saurik) Date: Wed, 31 Jul 2013 22:16:08 +0000 (-0700) Subject: Remove an extra '9' (silly typo) in "bug #9695860". X-Git-Tag: v0.9.3~1 X-Git-Url: https://git.saurik.com/backport.git/commitdiff_plain/68e68412d7654e345c8b943696c82e61f8754766 Remove an extra '9' (silly typo) in "bug #9695860". --- diff --git a/src/com/saurik/backport/Hook.java b/src/com/saurik/backport/Hook.java index 2ddd07a..1744455 100644 --- a/src/com/saurik/backport/Hook.java +++ b/src/com/saurik/backport/Hook.java @@ -91,12 +91,12 @@ public class Hook { in.skip(8); for (int i = 0; i != 2; ++i) if ((in.readShort() & 0x0080) != 0) - throw new ZipException("bug #99695860 [" + thiz.getName() + "]"); + throw new ZipException("bug #9695860 [" + thiz.getName() + "]"); in.skip(16); for (int i = 0; i != 3; ++i) if ((in.readShort() & 0x0080) != 0) - throw new ZipException("bug #99695860 [" + thiz.getName() + "]"); + throw new ZipException("bug #9695860 [" + thiz.getName() + "]"); return null; } @@ -132,11 +132,11 @@ public class Hook { raf.skipBytes(6); if ((raf.readShort() & 0x0080) != 0) - throw new ZipException("bug #99695860 [" + thiz.getName() + "]"); + throw new ZipException("bug #9695860 [" + thiz.getName() + "]"); raf.skipBytes(20); if ((raf.readShort() & 0x0080) != 0) - throw new ZipException("bug #99695860 [" + thiz.getName() + "]"); + throw new ZipException("bug #9695860 [" + thiz.getName() + "]"); } return invoke(thiz, args);