Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
the best of premature optimization!
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed Apr 30, 2015
1 parent 16098b6 commit 198b3cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public DefaultJarScanner(final Context context) {
catch (Exception e) {
log.info("Failed accessing defaultJarsToSkip field " + e);

jarsToSkip = new HashSet<String>(4);
jarsToSkip = new HashSet<String>(4, 1);
String jarList = System.getProperty(Constants.SKIP_JARS_PROPERTY);
if ( jarList != null ) {
StringTokenizer tokenizer = new StringTokenizer(jarList, ",");
Expand Down

0 comments on commit 198b3cf

Please sign in to comment.