From fcc31f7082160e86c3cef3e2777dad6bd447225e Mon Sep 17 00:00:00 2001 From: gac-x03da Date: Tue, 15 Aug 2023 13:02:47 +0200 Subject: [PATCH] Closedown --- plugins/XPSSpectrum.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/XPSSpectrum.java b/plugins/XPSSpectrum.java index 313ce11c..88614e10 100644 --- a/plugins/XPSSpectrum.java +++ b/plugins/XPSSpectrum.java @@ -382,7 +382,7 @@ public class XPSSpectrum extends ScriptProcessor { Object getScienta(String method) throws Exception{ Method m = scienta.getClass().getMethod(method, new Class[0]); - return m.invoke(scienta); + return m.invoke(scienta, new Object[0]); } void setScienta(String method, Object obj) throws Exception{