1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 17:35:35 +02:00

Don't use _ as identifier

Change-Id: Id1e251a3d8895863aef06d7618d38edb10c9113d
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
Marc-Andre Laperle 2017-03-24 16:56:27 -04:00
parent 9742e45559
commit 323a39cc6d

View file

@ -199,23 +199,23 @@ public class SymbolTableTests {//extends TestCase {
try {
map.insert(null, 99);
fail();
} catch (NullPointerException _) {}
} catch (NullPointerException e) {}
try {
map.containsKey(null);
fail();
} catch (NullPointerException _) {}
} catch (NullPointerException e) {}
try {
map.lookup(null);
fail();
} catch (NullPointerException _) {}
} catch (NullPointerException e) {}
C99SymbolTable table = C99SymbolTable.EMPTY_TABLE;
try {
table.insert(null, null, new C99Variable("blah")); //$NON-NLS-1$
fail();
} catch (NullPointerException _) {}
} catch (NullPointerException e) {}
}