From 4c66761aea38c933ceb01c675067ba0fda3f1651 Mon Sep 17 00:00:00 2001 From: Ben Gruver Date: Sat, 17 Oct 2015 13:48:54 -0700 Subject: [PATCH] Minor javadoc fix for AnalyzedInstruction.setPostRegisterType --- .../main/java/org/jf/dexlib2/analysis/AnalyzedInstruction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dexlib2/src/main/java/org/jf/dexlib2/analysis/AnalyzedInstruction.java b/dexlib2/src/main/java/org/jf/dexlib2/analysis/AnalyzedInstruction.java index ac17db3f..f6fc95a1 100644 --- a/dexlib2/src/main/java/org/jf/dexlib2/analysis/AnalyzedInstruction.java +++ b/dexlib2/src/main/java/org/jf/dexlib2/analysis/AnalyzedInstruction.java @@ -244,7 +244,7 @@ public class AnalyzedInstruction implements Comparable { * Sets the "post-instruction" register type as indicated. * @param registerNumber Which register to set * @param registerType The "post-instruction" register type - * @returns true if the given register type is different than the existing post-instruction register type + * @return true if the given register type is different than the existing post-instruction register type */ protected boolean setPostRegisterType(int registerNumber, RegisterType registerType) { assert registerNumber >= 0 && registerNumber < postRegisterMap.length;