diff options
Diffstat (limited to 'src/main/javassist/expr/ExprEditor.java')
-rw-r--r-- | src/main/javassist/expr/ExprEditor.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/javassist/expr/ExprEditor.java b/src/main/javassist/expr/ExprEditor.java index 0b3f934e..0f9bedce 100644 --- a/src/main/javassist/expr/ExprEditor.java +++ b/src/main/javassist/expr/ExprEditor.java @@ -35,7 +35,7 @@ import javassist.bytecode.Opcode; * <p>If <code>instrument()</code> is called in * <code>CtMethod</code>, the method body is scanned from the beginning * to the end. - * Whenever an expression, such as a method call and a <tt>new</tt> + * Whenever an expression, such as a method call and a <code>new</code> * expression (object creation), * is found, <code>edit()</code> is called in <code>ExprEdit</code>. * <code>edit()</code> can inspect and modify the given expression. @@ -259,10 +259,10 @@ public class ExprEditor { } /** - * Edits a <tt>new</tt> expression (overridable). + * Edits a <code>new</code> expression (overridable). * The default implementation performs nothing. * - * @param e the <tt>new</tt> expression creating an object. + * @param e the <code>new</code> expression creating an object. */ public void edit(NewExpr e) throws CannotCompileException {} @@ -270,7 +270,7 @@ public class ExprEditor { * Edits an expression for array creation (overridable). * The default implementation performs nothing. * - * @param a the <tt>new</tt> expression for creating an array. + * @param a the <code>new</code> expression for creating an array. * @throws CannotCompileException */ public void edit(NewArray a) throws CannotCompileException {} |