summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib/TestEnvironment.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-04-17 15:31:23 +0200
committerFridrich Strba <fridrich@documentfoundation.org>2013-04-22 14:38:25 +0000
commit37eee65fbf1ee7ef5c86731594e33b056b6612d2 (patch)
tree4748b319d8c72af0a8477f9324c2c79362bcf636 /qadevOOo/runner/lib/TestEnvironment.java
parent30426feff508439f79b2737cba94637d66ee7691 (diff)
Java cleanup - static fields that should not be static
Somebody appears to have been confused about the purpose of static in Java. These are instance fields and should therefore not be static. Also reduce the visibility of some methods and fields. Change-Id: I0b5875b6cbd91ee89823e2058b87c1087dc5c92e Reviewed-on: https://gerrit.libreoffice.org/3555 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'qadevOOo/runner/lib/TestEnvironment.java')
-rw-r--r--qadevOOo/runner/lib/TestEnvironment.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/qadevOOo/runner/lib/TestEnvironment.java b/qadevOOo/runner/lib/TestEnvironment.java
index 7c9b3d7cbe82..ba00770846a3 100644
--- a/qadevOOo/runner/lib/TestEnvironment.java
+++ b/qadevOOo/runner/lib/TestEnvironment.java
@@ -98,18 +98,6 @@ public final class TestEnvironment {
}
/**
- * Checks if an auxiliary object has been registered with name
- *
- * @param name a name referencing an auxiliarx object
- *
- * @return <tt>true</tt> if the object has been associated, <tt>false</tt>
- * otherwise.
- */
- public boolean hasObjRelation(String name) {
- return (relations.get(name) != null) ;
- }
-
- /**
* Sets the <code>TestCase</code> that created the environment.
*/
public void setTestCase( TestCase tCase) {