git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@224 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2002-07-06 02:53:06 +00:00
parent 639ef09060
commit e5cf2d38e2
2 changed files with 1 additions and 3 deletions

View File

@ -24,8 +24,7 @@ import java.util.Stack;
* In this example, Outer.foo and the Runnable.foo are two different variables - even though * In this example, Outer.foo and the Runnable.foo are two different variables - even though
* Runnable.foo looks like its inside Outer, they don't conflict. * Runnable.foo looks like its inside Outer, they don't conflict.
* *
* So, a couple of SymbolTables are grouped into a Namespace. SymbolTables are grouped so that inner classes have their own * So, a couple of SymbolTables are grouped into a Namespace. So a class with an inner class would look like this:
* "group" of symbol tables. So a class with an inner class would look like this:
* *
* ST * ST
* ST * ST

View File

@ -4,7 +4,6 @@ public class EmptyWhileStmtRule {
} }
while (true == true) { while (true == true) {
String x = ""; String x = "";
x = "hi";
} }
} }
} }