| 395 | | ignored = new String[] { "java.", "javax.", "sun.", "com.apple", "apple.", "field.namespace", "field.math", "field.launch.", "org.objectweb", "com.sun", "org.xml", "org.w3c", "$Prox", "main", "field.util.BetterWeak", "field.misc.ANSIColorUtils", "ch.rand", "org.python", "org.apache" }; |
|---|
| | 395 | |
|---|
| | 396 | String exceptions = SystemProperties.getProperty("trampolineExceptions", null); |
|---|
| | 397 | ignored = new String[] {"java.", "javax.", "sun.", "com.apple", "apple.", "field.namespace", "field.math", "field.launch.", "org.objectweb", "com.sun", "org.xml", "org.w3c", "$Prox", "main", "field.util.BetterWeak", "field.misc.ANSIColorUtils", "ch.rand", "org.python", "org.apache" }; |
|---|
| | 398 | |
|---|
| | 399 | if (exceptions!=null) |
|---|
| | 400 | { |
|---|
| | 401 | |
|---|
| | 402 | ArrayList a = new ArrayList(Arrays.asList(ignored)); |
|---|
| | 403 | a.addAll(Arrays.asList(exceptions.split(":"))); |
|---|
| | 404 | ignored = (String[]) a.toArray(ignored); |
|---|
| | 405 | } |
|---|