bean/test/applet/oooapplet/OOoViewer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 7b8934d27ea9b6aa227cc16272823f4bec55860f Author: rbuj <[email protected]> Date: Sun Sep 14 14:26:10 2014 +0200 bean: use a non-varargs call for a stopOOoConnection method invocation Change-Id: I589436be7d28b50b0b900a314b300d382eac5eb8 Reviewed-on: https://gerrit.libreoffice.org/11445 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Noel Grandin <[email protected]> diff --git a/bean/test/applet/oooapplet/OOoViewer.java b/bean/test/applet/oooapplet/OOoViewer.java index c2eaaa5..cd86b4a 100644 --- a/bean/test/applet/oooapplet/OOoViewer.java +++ b/bean/test/applet/oooapplet/OOoViewer.java @@ -101,7 +101,7 @@ public class OOoViewer extends Applet { try { Method methStop = m_objBean.getClass().getMethod( "stopOOoConnection", new Class[0]); - methStop.invoke(m_objBean, null); + methStop.invoke(m_objBean, (Object[]) null); } catch (java.lang.NoSuchMethodException e) { e.printStackTrace(); } catch (java.lang.IllegalAccessException e) { _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
