Skip to content

Commit

Permalink
missing merge commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffclick committed Aug 7, 2013
1 parent bc3d0f2 commit f771da2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/hex/gbm/DHistogram.java
Original file line number Diff line number Diff line change
Expand Up @@ -324,11 +324,7 @@ public long byteSize() {
sum += byteSize(_MSEs);
if( _clss != null ) {
sum += (_clss.length+3)*8;
for( short[] ss : _clss ) sum += byteSize(ss);
}
if( _clss2 != null ) {
sum += (_clss2.length+3)*8;
for( long[] ss : _clss2 ) sum += byteSize(ss);
for( long[] ls : _clss ) sum += byteSize(ls);
}
return sum;
}
Expand Down

0 comments on commit f771da2

Please sign in to comment.