Returns a new builder. The generated builder is equivalent to the builder created by the Builder constructor.
()
| 128 | * created by the {@link Builder} constructor. |
| 129 | */ |
| 130 | public static <K, V> Builder<K, V> builder() { |
| 131 | return new Builder<K, V>(); |
| 132 | } |
| 133 | |
| 134 | static void checkNoConflict( |
| 135 | boolean safe, String conflictDescription, Entry<?, ?> entry1, Entry<?, ?> entry2) { |
no outgoing calls
no test coverage detected