fix spelling of propogateRegisters method

git-svn-id: https://smali.googlecode.com/svn/trunk@529 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-12-25 23:06:09 +00:00
parent 37885c5f82
commit f29d8ae0b1

View File

@ -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();
}
}
}