Constructor for a primary unit @param name
(String name)
| 115 | * @param name |
| 116 | */ |
| 117 | public Unit(String name) { |
| 118 | this.name = name; |
| 119 | this.primary = this; |
| 120 | this.scale = 1; |
| 121 | UNITS.put(name, this); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Constructor for a derived unit |
nothing calls this directly
no test coverage detected