- To: visad-list@xxxxxxxxxxxxx
- Subject: very small bug in ScaledUnit.java
- From: Tom Rink <rink@xxxxxxxxxxxxx>
- Date: Thu, 6 Aug 1998 16:09:09 -0500
Steve,
ScaledUnit
{
.
.
.
Unit divideInto( DerivedUnit that )
{
return new ScaledUnit( 1.0/amount, (ScaledUnit)that.divide(derivedUnit));
** should be...
return new ScaledUnit( 1.0/amount, (DerivedUnit)that.divide(derivedUnit));
}
.
.
.
}
Can you double check that this is correct?
Thanks,
TomR