From a5652ad8e16c3421114e13c4beb833eecce1993c Mon Sep 17 00:00:00 2001 From: carlosuc3m <100329787@alumnos.uc3m.es> Date: Tue, 22 Nov 2022 14:43:13 +0100 Subject: [PATCH] remove time help --- src/main/java/org/bioimageanalysis/icy/jep/exec/PythonExec.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/bioimageanalysis/icy/jep/exec/PythonExec.java b/src/main/java/org/bioimageanalysis/icy/jep/exec/PythonExec.java index 9498d35..f2afaa9 100644 --- a/src/main/java/org/bioimageanalysis/icy/jep/exec/PythonExec.java +++ b/src/main/java/org/bioimageanalysis/icy/jep/exec/PythonExec.java @@ -57,7 +57,6 @@ public class PythonExec implements AutoCloseable { * @throws IOException */ private PythonExec(PythonUtils pythonUtils, JepConfig customConfig) throws IllegalArgumentException, IOException { - long t0 = System.nanoTime(); this.jepPath = pythonUtils.getJepPath(); this.pythonRoot = pythonUtils.getPythonHome(); checkPreviouslyInstantiatedPython(); @@ -72,7 +71,6 @@ public class PythonExec implements AutoCloseable { } interpreter = new SharedInterpreter(); thread = Thread.currentThread(); - System.out.println(System.nanoTime() - t0); } private void configureJepNeededPaths() throws IllegalArgumentException, IOException { -- GitLab