From 68e68412d7654e345c8b943696c82e61f8754766 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 31 Jul 2013 15:16:08 -0700 Subject: [PATCH] Remove an extra '9' (silly typo) in "bug #9695860". --- src/com/saurik/backport/Hook.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); -- 2.50.0