diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-09-25 12:26:30 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-09-26 09:44:26 +0200 |
commit | 02caeb507cb9e0d7ea6f6f789498d7a438ced4a2 (patch) | |
tree | 03cb1fbf57e3b977b53f73d2e8feab8b5c140acc | |
parent | 2078dbdbf265b77b7e09b84527258b1a5fb9af93 (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: I9114b844b014d561464317ad6f54b54fe5a81d72
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103454
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | toolkit/qa/complex/toolkit/GridControl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/qa/complex/toolkit/GridControl.java b/toolkit/qa/complex/toolkit/GridControl.java index 8b1bcea411b2..b2338ee68f93 100644 --- a/toolkit/qa/complex/toolkit/GridControl.java +++ b/toolkit/qa/complex/toolkit/GridControl.java @@ -643,9 +643,9 @@ public class GridControl } - public <T> T createInstance( Class<T> i_interfaceClass, final String i_serviceIndentifer ) throws Exception + public <T> T createInstance( Class<T> i_interfaceClass, final String i_serviceIndentifier ) throws Exception { - return UnoRuntime.queryInterface( i_interfaceClass, createInstance( i_serviceIndentifer ) ); + return UnoRuntime.queryInterface( i_interfaceClass, createInstance( i_serviceIndentifier ) ); } |