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

[187860] fixing new clear(String) method so that it really clears the set of used mnemonics first

This commit is contained in:
David Dykstal 2007-05-25 14:10:30 +00:00
parent 4fef35c2b1
commit 65c2353b40

View file

@ -145,6 +145,7 @@ public class Mnemonics {
* @param usedMnemonics
*/
public void clear(String usedMnemonics) {
clear();
makeUsed(usedMnemonics);
}