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 fd44ff5 commit 787eb94
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public Object read(byte[] data) throws BlockCodecException {
BitBlockSeqType body = this.mt.getBody();
Object result = decode(body.getName(), body, data, null);
this.blockValues.clear();
System.gc();
// System.gc();
return result;
}

Expand All @@ -112,7 +112,7 @@ public Object read(byte[] data, Map<String, Object> initialValues) throws BlockC
BitBlockSeqType body = this.mt.getBody();
Object result = decode(body.getName(), body, data, null);
this.blockValues.clear();
System.gc();
// System.gc();
return result;
}

Expand Down

0 comments on commit 787eb94

Please sign in to comment.