From cfefaafc1c988e964e06d15f9cdeada6cfbea32d Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 22 Aug 2020 18:43:02 +0200 Subject: Fix typo in code Change-Id: I9a81d265a99aee896a71c14e3a3ee6ba863b4d5d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101199 Tested-by: Jenkins Reviewed-by: Julien Nabet --- qadevOOo/tests/java/mod/_forms/GenericModelTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qadevOOo') diff --git a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java index b24a951c30b3..c5ffe1ee55f8 100644 --- a/qadevOOo/tests/java/mod/_forms/GenericModelTest.java +++ b/qadevOOo/tests/java/mod/_forms/GenericModelTest.java @@ -133,7 +133,7 @@ public class GenericModelTest extends TestCase { private static final String m_TestDB = "TestDB"; private DBTools m_dbTools = null; - private boolean m_ConnectionColsed = false; + private boolean m_ConnectionClosed = false; /** * describes the kind of the shape which should be created. @@ -217,7 +217,7 @@ public class GenericModelTest extends TestCase { protected void initialize(TestParameters tParam, PrintWriter log) throws Exception { log.println("creating a textdocument"); m_xTextDoc = WriterTools.createTextDoc(tParam.getMSF()); - m_ConnectionColsed = false; + m_ConnectionClosed = false; debug = tParam.getBool(util.PropertyName.DEBUG_IS_ACTIVE); m_propertiesToSet.clear(); } @@ -237,7 +237,7 @@ public class GenericModelTest extends TestCase { // some interface tests call cleanup to reset the environment. If such // a test is the last one cleanup was called twice. The second call // causes then nasty exceptions... - if (m_ConnectionColsed) return; + if (m_ConnectionClosed) return; try { XIndexAccess forms = UnoRuntime.queryInterface( XIndexAccess.class, @@ -329,7 +329,7 @@ public class GenericModelTest extends TestCase { log.println("ERROR: Error while object test cleaning up: " + e.toString()); } - m_ConnectionColsed = true; + m_ConnectionClosed = true; } /** -- cgit