diff options
Diffstat (limited to 'src/main/javassist/CtField.java')
-rw-r--r-- | src/main/javassist/CtField.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/javassist/CtField.java b/src/main/javassist/CtField.java index a4cb01e1..15a6d6f0 100644 --- a/src/main/javassist/CtField.java +++ b/src/main/javassist/CtField.java @@ -379,8 +379,8 @@ public class CtField extends CtMember { * this field. They have to be explicitly updated. For example, * if some method contains an expression {@code t.value} and the type * of the variable {@code t} is changed by {@link #setType(CtClass)} - * from {@code int} to {@code double}, then {@ t.value} has to be modified - * since the bytecode of {@code t.value} contains the type information. + * from {@code int} to {@code double}, then {@code t.value} has to be modified + * as well since the bytecode of {@code t.value} contains the type information. * </p> * * @see CodeConverter |