Skip to content

Commit

Permalink
errorprone :: ConstantField for UnixCommandPlace (#983)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb authored Oct 21, 2024
1 parent 16aac99 commit 6c3ebe2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/emissary/place/UnixCommandPlace.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class UnixCommandPlace extends ServiceProviderPlace {
protected String alternateView = null;
protected boolean addAsMetaData = false;
protected boolean perlChop = false;
protected boolean NUKE_ALL_PROXIES = false;
protected boolean nukeAllProxies = false;
protected boolean keepFilesDebug = false;
protected String charset = "8859_1";
protected String logfilename;
Expand Down Expand Up @@ -112,7 +112,7 @@ protected void configurePlace() {
addAsMetaData = true;
}
perlChop = configG.findBooleanEntry("PERL_CHOP", false);
NUKE_ALL_PROXIES = configG.findBooleanEntry("NUKE_ALL_PROXIES", false);
nukeAllProxies = configG.findBooleanEntry("NUKE_ALL_PROXIES", false);
keepFilesDebug = configG.findBooleanEntry("KEEP_FILES_DEBUG", false);
charset = configG.findStringEntry("OUTPUT_CHARSET", charset);
executrix = new Executrix(configG);
Expand Down Expand Up @@ -421,7 +421,7 @@ protected void processData(IBaseDataObject tData) throws ResourceException {
asMetaDataHook(tData, metaDataTag, outputData);
} else {
asDataHook(tData, outputData);
if (NUKE_ALL_PROXIES) {
if (nukeAllProxies) {
nukeMyProxies(tData);
if (newForm != null) {
tData.pushCurrentForm(newForm);
Expand Down

0 comments on commit 6c3ebe2

Please sign in to comment.