diff options
Diffstat (limited to 'src/grammar/CoverageList.java')
| -rw-r--r-- | src/grammar/CoverageList.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/grammar/CoverageList.java b/src/grammar/CoverageList.java index e080b9a..d69fc5b 100644 --- a/src/grammar/CoverageList.java +++ b/src/grammar/CoverageList.java @@ -38,14 +38,12 @@ public class CoverageList implements IParseTreeNode public CoverageList(String c)
{
- System.err.println("Adding coverage name: " + c );
coverageName = c;
next = null;
}
public CoverageList(String c, CoverageList l)
{
- System.err.println("Adding coverage name: " + c );
coverageName = c;
next = l;
}
|
