Skip to content

Commit

Permalink
remove gc()
Browse files Browse the repository at this point in the history
  • Loading branch information
gazer2kanlin committed Jun 15, 2017
1 parent d859c39 commit fbeac21
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void readEnd() {
public void reset() {
this.data.clear();
this.data.trimToSize();
System.gc();
// System.gc();
}

@Override
Expand All @@ -88,7 +88,7 @@ public byte[] packing() {
this.data.clear();
this.data.trimToSize();
this.data = new ArrayList<Byte>();
System.gc();
// System.gc();

return result;
}
Expand Down

0 comments on commit fbeac21

Please sign in to comment.