Skip to content

Commit

Permalink
'#43 Removes redundant code.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickdalla committed Oct 17, 2023
1 parent ce81e08 commit ebbd15a
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ synchronized public void init(Jep pjep, File aleappPath) {
File scriptsPath = new File(aleappPath, "scripts");
File artifactsPath = new File(scriptsPath, "artifacts");
if (artifactsPath.exists()) {
jep.eval("sys.path.append('" + aleappPath.getAbsolutePath().replace("\\", "\\\\") + "')");
jep.eval("sys.path.append('" + scriptsPath.getAbsolutePath().replace("\\", "\\\\") + "')");
jep.eval("sys.path.append('" + artifactsPath.getAbsolutePath().replace("\\", "\\\\") + "')");
File[] scripts = artifactsPath.listFiles();
if (scripts != null) {
for (File file : scripts) {
Expand Down

0 comments on commit ebbd15a

Please sign in to comment.