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:
parent
9742e45559
commit
323a39cc6d
1 changed files with 4 additions and 4 deletions
|
@ -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) {}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue