diff options
Diffstat (limited to 'src/main/javassist/expr/ExprEditor.java')
-rw-r--r-- | src/main/javassist/expr/ExprEditor.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/javassist/expr/ExprEditor.java b/src/main/javassist/expr/ExprEditor.java index 6e7f8705..107b62a1 100644 --- a/src/main/javassist/expr/ExprEditor.java +++ b/src/main/javassist/expr/ExprEditor.java @@ -40,7 +40,7 @@ import javassist.CannotCompileException; * * <p>The following code is an example: * - * <ul><pre> + * <pre> * CtMethod cm = ...; * cm.instrument(new ExprEditor() { * public void edit(MethodCall m) throws CannotCompileException { @@ -49,7 +49,7 @@ import javassist.CannotCompileException; * + m.getLineNumber()); * } * }); - * </pre></ul> + * </pre> * * <p>This code inspects all method calls appearing in the method represented * by <code>cm</code> and it prints the names and the line numbers of the |