X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=engine%2Fcompbio%2Fengine%2Fclient%2FSkeletalExecutable.java;h=dbdff477f80c2cd101e235b80d9868c0a460f4bd;hb=b2a2fdc2bd95a64b3908d8ea2f31270b6c7199d3;hp=b991440904ac81e72967231d7b46d8e9e2bda353;hpb=c6a3bc57b6b96407d7b203e319e947e9d9aed31c;p=jabaws.git diff --git a/engine/compbio/engine/client/SkeletalExecutable.java b/engine/compbio/engine/client/SkeletalExecutable.java index b991440..dbdff47 100644 --- a/engine/compbio/engine/client/SkeletalExecutable.java +++ b/engine/compbio/engine/client/SkeletalExecutable.java @@ -133,8 +133,7 @@ public abstract class SkeletalExecutable implements Executable { if (command.value == null) { continue; } - String propertyPath = compbio.engine.client.Util.getExecProperty( - command.name + ".path", getType()); + String propertyPath = EngineUtil.getExecProperty(command.name + ".path", getType()); if (Util.isEmpty(propertyPath)) { continue; } @@ -145,7 +144,7 @@ public abstract class SkeletalExecutable implements Executable { // necessary continue; } - String absMatrixPath = compbio.engine.client.Util.convertToAbsolute(propertyPath); + String absMatrixPath = EngineUtil.convertToAbsolute(propertyPath); command.value = absMatrixPath + File.separator + command.value; cbuilder.setParam(command); } @@ -313,7 +312,7 @@ public abstract class SkeletalExecutable implements Executable { public LimitsManager getLimits() { synchronized (SkeletalExecutable.class) { if (limits == null) { - limits = compbio.engine.client.Util.getLimits(this.getType()); + limits = EngineUtil.getLimits(this.getType()); } } return limits;