From 8f7848ccd6c43cfedd47d0f5de5ecddd388a9294 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 3 Sep 2012 13:04:17 +0200 Subject: Java cleanup, remove unused class Change-Id: I27403fabc3b5326108a34655ffe8b2b0846c0694 --- unotest/Jar_test.mk | 1 - .../java/org/openoffice/test/TestArgument.java | 30 ---------------------- 2 files changed, 31 deletions(-) delete mode 100644 unotest/source/java/org/openoffice/test/TestArgument.java (limited to 'unotest') 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." system property). - */ -public final class TestArgument { - public static String get(String name) { - return Argument.get("testarg." + name); - } - - private TestArgument() {} -} -- cgit