Let's not waste semi-colons ...

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1197475 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-11-04 10:03:39 +00:00
parent 010bdd1762
commit 60516af98d
3 changed files with 4 additions and 4 deletions

View File

@ -354,8 +354,8 @@ public class Rotation implements Serializable {
if (c <= inPlaneThreshold * k.getNorm() * u2Prime.getNorm()) {
// the (q1, q2, q3) vector is also close to the (u1, u3) plane,
// it is almost aligned with u1: we try (u2, u3) and (v2, v3)
k = v2Su2.crossProduct(v3Su3);;
c = k.dotProduct(u2.crossProduct(u3));;
k = v2Su2.crossProduct(v3Su3);
c = k.dotProduct(u2.crossProduct(u3));
if (c <= 0) {
// the (q1, q2, q3) vector is aligned with everything

View File

@ -132,7 +132,7 @@ public class EventStateTest {
y[0] += 1.0;
}
};
}
}

View File

@ -912,5 +912,5 @@ public class BatteryNISTTest {
}
return this.gradient;
}
};
}
}