From d802b6d2424cf87a9c3780565625a53fe184b790 Mon Sep 17 00:00:00 2001 From: Robert Antoni Buj i Gelonch Date: Thu, 9 Oct 2014 15:51:57 +0200 Subject: unchecked call to getDeclaredMethod(String,Class...) http://docs.oracle.com/javase/tutorial/reflect/class/classTrouble.html Change-Id: I293e7ad3ace1a8876c34d7ffd070b49807a8b0a6 Reviewed-on: https://gerrit.libreoffice.org/11882 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- toolkit/test/accessibility/ov/ObjectViewContainer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolkit/test') diff --git a/toolkit/test/accessibility/ov/ObjectViewContainer.java b/toolkit/test/accessibility/ov/ObjectViewContainer.java index e8d6272ad906..a22d61ebd9a6 100644 --- a/toolkit/test/accessibility/ov/ObjectViewContainer.java +++ b/toolkit/test/accessibility/ov/ObjectViewContainer.java @@ -69,7 +69,7 @@ public class ObjectViewContainer { try { - Class aViewClass = maViewTemplates.get (i); + Class aViewClass = maViewTemplates.get(i); Method aCreateMethod = aViewClass.getDeclaredMethod ( "Create", new Class[] { ObjectViewContainer.class, -- cgit