Creates an empty HashBasedTable.
()
| 75 | |
| 76 | |
| 77 | public static <R, C, V> HashBasedTable<R, C, V> create() { |
| 78 | return new HashBasedTable<R, C, V>(new HashMap<R, Map<C, V>>(), new Factory<C, V>(0)); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Creates an empty {@code HashBasedTable} with the specified map sizes. |
nothing calls this directly
no test coverage detected