()
| 1026 | } |
| 1027 | |
| 1028 | @Override |
| 1029 | public int hashCode() { |
| 1030 | // racy single-check idiom |
| 1031 | int h = hashCode; |
| 1032 | if (h == 0) { |
| 1033 | h = Objects.hashCode(type, subtype, parametersAsMap()); |
| 1034 | hashCode = h; |
| 1035 | } |
| 1036 | return h; |
| 1037 | } |
| 1038 | |
| 1039 | private static final MapJoiner PARAMETER_JOINER = Joiner.on("; ").withKeyValueSeparator("="); |
| 1040 |
nothing calls this directly
no test coverage detected