parent
bfa5b60eff
commit
0d937abf8c
|
@ -409,7 +409,7 @@ public class AggregateSummaryStatistics implements StatisticalSummary,
|
|||
if (object == this) {
|
||||
return true;
|
||||
}
|
||||
if (object instanceof AggregatingSummaryStatistics == false) {
|
||||
if (!(object instanceof AggregatingSummaryStatistics)) {
|
||||
return false;
|
||||
}
|
||||
AggregatingSummaryStatistics stat = (AggregatingSummaryStatistics)object;
|
||||
|
|
|
@ -380,7 +380,7 @@ public class MultivariateSummaryStatistics
|
|||
if (object == this ) {
|
||||
return true;
|
||||
}
|
||||
if (object instanceof MultivariateSummaryStatistics == false) {
|
||||
if (!(object instanceof MultivariateSummaryStatistics)) {
|
||||
return false;
|
||||
}
|
||||
MultivariateSummaryStatistics stat = (MultivariateSummaryStatistics) object;
|
||||
|
|
|
@ -140,7 +140,7 @@ public class StatisticalSummaryValues implements Serializable,
|
|||
if (object == this ) {
|
||||
return true;
|
||||
}
|
||||
if (object instanceof StatisticalSummaryValues == false) {
|
||||
if (!(object instanceof StatisticalSummaryValues)) {
|
||||
return false;
|
||||
}
|
||||
StatisticalSummaryValues stat = (StatisticalSummaryValues) object;
|
||||
|
|
|
@ -392,7 +392,7 @@ public class SummaryStatistics implements StatisticalSummary, Serializable {
|
|||
if (object == this) {
|
||||
return true;
|
||||
}
|
||||
if (object instanceof SummaryStatistics == false) {
|
||||
if (!(object instanceof SummaryStatistics)) {
|
||||
return false;
|
||||
}
|
||||
SummaryStatistics stat = (SummaryStatistics)object;
|
||||
|
|
Loading…
Reference in New Issue