Adds a description to the set.
(int type, String description)
| 1546 | * Adds a description to the set. |
| 1547 | */ |
| 1548 | private static void addDescription(int type, String description) { |
| 1549 | if (description.startsWith("<") && description.endsWith(">")) { |
| 1550 | DESCRIPTIONS.put(type, description); |
| 1551 | } else { |
| 1552 | DESCRIPTIONS.put(type, '"' + description + '"'); |
| 1553 | } |
| 1554 | } |
| 1555 | |
| 1556 | |
| 1557 | static { |
no test coverage detected