Returns a new builder. The generated builder is equivalent to the builder created by the Builder constructor.
()
| 138 | |
| 139 | |
| 140 | public static <K, V> Builder<K, V> builder() { |
| 141 | return new Builder<K, V>(); |
| 142 | } |
| 143 | |
| 144 | static void checkNoConflict(boolean safe, String conflictDescription, Entry<?, ?> entry1, Entry<?, ?> entry2) { |
| 145 | if (!safe) { |
no outgoing calls
no test coverage detected