tweak
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@224 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
@ -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
|
||||||
|
@ -4,7 +4,6 @@ public class EmptyWhileStmtRule {
|
|||||||
}
|
}
|
||||||
while (true == true) {
|
while (true == true) {
|
||||||
String x = "";
|
String x = "";
|
||||||
x = "hi";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user