Removed tabs and trailing spaces.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@924348 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2010-03-17 16:16:31 +00:00
parent effbc63f1d
commit b2fc89b01c
1 changed files with 2 additions and 2 deletions

View File

@ -267,9 +267,9 @@ public class BigReal implements FieldElement<BigReal>, Comparable<BigReal>, Seri
if (this == other){
return true;
}
if (other instanceof BigReal){
return d.equals(((BigReal) other).d);
return d.equals(((BigReal) other).d);
}
return false;
}