Convert weight in pounds to weight in units. @param weightInPounds @return double weight in units.
(final double weightInPounds)
| 257 | * @return double weight in units. |
| 258 | */ |
| 259 | public double convertWeightToUnitSet(final double weightInPounds) |
| 260 | { |
| 261 | return weightInPounds * weightFactor.doubleValue(); |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Convert weight in pounds to weight in units. |
no test coverage detected