Skip to content

Commit

Permalink
make flags public just so people can hack it if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchy committed Oct 25, 2011
1 parent 6f39fce commit 8d08a66
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -101,8 +101,8 @@ public void clear() {

private static final SoftWrapper<Queue<Entry>> cache = new SoftWrapper<Queue<Entry>>();
private static final AtomicInteger counter = new AtomicInteger();
private static final int BYTES_LIMIT = 10 * 1024 * 1024; // don't cache entries that are bigger than that...
private static final int COUNT_LIMIT = 100;
public static int BYTES_LIMIT = 10 * 1024 * 1024; // don't cache entries that are bigger than that...
public static int COUNT_LIMIT = 100;

public static void clear() {
cache.clear();
Expand Down

0 comments on commit 8d08a66

Please sign in to comment.