mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GT-2913: launch.properties can now take platform-specific VMARGS.
This commit is contained in:
parent
8c689a0099
commit
fa20ba3762
7 changed files with 87 additions and 75 deletions
|
@ -1,6 +1,5 @@
|
|||
/* ###
|
||||
* IP: GHIDRA
|
||||
* REVIEWED: YES
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -22,11 +21,7 @@ import net.sf.cglib.proxy.Enhancer;
|
|||
|
||||
public class ContinuesFactory implements GenericFactory {
|
||||
|
||||
private static final String CONTINUES_INTERCEPTOR_DISABLED_PROPERTY =
|
||||
"ContinuesInterceptor.disabled";
|
||||
|
||||
private static final boolean disabled =
|
||||
System.getProperty(CONTINUES_INTERCEPTOR_DISABLED_PROPERTY) != null;
|
||||
private static final boolean disabled = Boolean.getBoolean("ContinuesInterceptor.disabled");
|
||||
|
||||
private ExceptionHandler exceptionHandler;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue