fix typo that broke the gnuplot integration

This commit is contained in:
2017-03-20 18:52:48 +01:00
parent cc71a32d27
commit c245a1f7d4

View File

@@ -60,7 +60,7 @@ public class Gnuplot {
if (System.getProperty(PROPERTY_GNUPLOT_HOME) != null) { if (System.getProperty(PROPERTY_GNUPLOT_HOME) != null) {
if (isWindows()) { if (isWindows()) {
return System.getProperty(PROPERTY_GNUPLOT_HOME) + "\\bin\\+gnuplot.exe"; return System.getProperty(PROPERTY_GNUPLOT_HOME) + "\\bin\\gnuplot.exe";
} else { } else {
return System.getProperty(PROPERTY_GNUPLOT_HOME) + "/bin/gnuplot"; return System.getProperty(PROPERTY_GNUPLOT_HOME) + "/bin/gnuplot";
} }
@@ -68,7 +68,7 @@ public class Gnuplot {
if (System.getenv(ENV_GNUPLOT_HOME) != null) { if (System.getenv(ENV_GNUPLOT_HOME) != null) {
if (isWindows()) { if (isWindows()) {
return System.getenv(ENV_GNUPLOT_HOME) + "\\bin\\+gnuplot.exe"; return System.getenv(ENV_GNUPLOT_HOME) + "\\bin\\gnuplot.exe";
} else { } else {
return System.getenv(ENV_GNUPLOT_HOME) + "/bin/gnuplot"; return System.getenv(ENV_GNUPLOT_HOME) + "/bin/gnuplot";
} }