summaryrefslogtreecommitdiff
path: root/unotest
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-03 13:04:17 +0200
committerMichael Stahl <mstahl@redhat.com>2012-09-05 21:01:47 +0200
commit8f7848ccd6c43cfedd47d0f5de5ecddd388a9294 (patch)
tree8c81984fbfc896cfbaca63b031178e59e051c013 /unotest
parentbb257014cdc0374db1a8d9932ba8629ce9aac8f4 (diff)
Java cleanup, remove unused class
Change-Id: I27403fabc3b5326108a34655ffe8b2b0846c0694
Diffstat (limited to 'unotest')
-rw-r--r--unotest/Jar_test.mk1
-rw-r--r--unotest/source/java/org/openoffice/test/TestArgument.java30
2 files changed, 0 insertions, 31 deletions
diff --git a/unotest/Jar_test.mk b/unotest/Jar_test.mk
index 014a835016e2..5e78e91ddcf7 100644
--- a/unotest/Jar_test.mk
+++ b/unotest/Jar_test.mk
@@ -51,7 +51,6 @@ $(eval $(call gb_Jar_add_sourcefiles,test,\
unotest/source/java/org/openoffice/test/FileHelper \
unotest/source/java/org/openoffice/test/OfficeConnection \
unotest/source/java/org/openoffice/test/OfficeFileUrl \
- unotest/source/java/org/openoffice/test/TestArgument \
unotest/source/java/org/openoffice/test/UnoApiTest \
))
diff --git a/unotest/source/java/org/openoffice/test/TestArgument.java b/unotest/source/java/org/openoffice/test/TestArgument.java
deleted file mode 100644
index adf249072e96..000000000000
--- a/unotest/source/java/org/openoffice/test/TestArgument.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package org.openoffice.test;
-
-/** Obtain the value of a test argument (tunneled in via an
- "org.openoffice.test.arg.testarg.<name>" system property).
- */
-public final class TestArgument {
- public static String get(String name) {
- return Argument.get("testarg." + name);
- }
-
- private TestArgument() {}
-}