Skip to content

Commit 6258776

Browse files
author
mgricken
committed
Fixed non-UTF8 character.
git-svn-id: file:///tmp/test-svn/trunk@5295 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent 7cdde88 commit 6258776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dynamicjava/src/edu/rice/cs/dynamicjava/interpreter/StatementEvaluator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ public Object next() {
310310
// as per Java Language Specification (JLS):
311311
// http://java.sun.com/docs/books/jls/third_edition/html/statements.html#14.18
312312
// "If evaluation of the Expression completes normally, producing a null value,
313-
// then an instance of class NullPointerException is created and thrown instead of null."
313+
// then an instance V' of class NullPointerException is created and thrown instead of null."
314314
t = new NullPointerException();
315315
t.setStackTrace(new StackTraceElement[0]);
316316
}

0 commit comments

Comments
 (0)