From e5cf2d38e2099110b8c5b6f21bf7bcf1143c2d06 Mon Sep 17 00:00:00 2001 From: Tom Copeland Date: Sat, 6 Jul 2002 02:53:06 +0000 Subject: [PATCH] tweak git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@224 51baf565-9d33-0410-a72c-fc3788e3496d --- pmd/src/net/sourceforge/pmd/Namespace.java | 3 +-- pmd/test-data/EmptyWhileStmtRule.java | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pmd/src/net/sourceforge/pmd/Namespace.java b/pmd/src/net/sourceforge/pmd/Namespace.java index e13a9d7eae..014879b913 100644 --- a/pmd/src/net/sourceforge/pmd/Namespace.java +++ b/pmd/src/net/sourceforge/pmd/Namespace.java @@ -24,8 +24,7 @@ import java.util.Stack; * 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. * - * So, a couple of SymbolTables are grouped into a Namespace. SymbolTables are grouped so that inner classes have their own - * "group" of symbol tables. So a class with an inner class would look like this: + * So, a couple of SymbolTables are grouped into a Namespace. So a class with an inner class would look like this: * * ST * ST diff --git a/pmd/test-data/EmptyWhileStmtRule.java b/pmd/test-data/EmptyWhileStmtRule.java index abed1d07e1..ed0013f2d3 100644 --- a/pmd/test-data/EmptyWhileStmtRule.java +++ b/pmd/test-data/EmptyWhileStmtRule.java @@ -4,7 +4,6 @@ public class EmptyWhileStmtRule { } while (true == true) { String x = ""; - x = "hi"; } } }