From f29d8ae0b1bd08458db1d388ca86bcf3b856d73d Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Fri, 25 Dec 2009 23:06:09 +0000 Subject: [PATCH] fix spelling of propogateRegisters method git-svn-id: https://smali.googlecode.com/svn/trunk@529 55b6fa8a-2a1e-11de-a435-ffa8d773f76a --- .../src/main/java/org/jf/dexlib/Util/DeodexUtil.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java b/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java index 9dde0785..89aa6418 100644 --- a/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java +++ b/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java @@ -185,7 +185,7 @@ public class DeodexUtil { prevInsn = i; } - insns.get(0).propogateRegisters(); + insns.get(0).propagateRegisters(); return insns; } @@ -1339,7 +1339,7 @@ public class DeodexUtil { public void updateRegisterReferenceType(String type) { this.registerReferenceType = type; - this.propogateRegisters(); + this.propagateRegisters(); } /** @@ -1374,7 +1374,7 @@ public class DeodexUtil { } } - public void propogateRegisters() { + public void propagateRegisters() { visited = true; //if this is the first instruction, we're in a try block, then if the first instruction throws an @@ -1382,7 +1382,7 @@ public class DeodexUtil { //i.e. if the first instruction in the exception handler is also covered by a try block.. if (this.firstInstruction && canThrow && exceptionHandlers != null) { for (insn handler: exceptionHandlers) { - handler.propogateRegisters(); + handler.propagateRegisters(); } } @@ -1463,7 +1463,7 @@ public class DeodexUtil { } if (somethingChanged || !nextInsn.visited) { - nextInsn.propogateRegisters(); + nextInsn.propagateRegisters(); } } }