aboutsummaryrefslogtreecommitdiffstats
path: root/anttasks/src/com/android/ant/SetupTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'anttasks/src/com/android/ant/SetupTask.java')
-rw-r--r--anttasks/src/com/android/ant/SetupTask.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/anttasks/src/com/android/ant/SetupTask.java b/anttasks/src/com/android/ant/SetupTask.java
deleted file mode 100644
index c0bc55d..0000000
--- a/anttasks/src/com/android/ant/SetupTask.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * Copyright (C) 2009 The Android Open Source Project
- *
- * Licensed 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
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.ant;
-
-import org.apache.tools.ant.BuildException;
-import org.apache.tools.ant.Task;
-import org.apache.tools.ant.taskdefs.ImportTask;
-
-/**
- * Legacy setupTask class used by older build system.
- *
- * If this is used it actually only display an error about the need to update the build file.
- */
-public final class SetupTask extends Task {
-
- /**
- * @param b unused.
- *
- * @deprecated only present because the original {@link SetupTask} extends {@link ImportTask}.
- */
- @Deprecated
- public void setImport(boolean b) {
- // do nothing
- }
-
- @Override
- public void execute() throws BuildException {
- throw new BuildException("\n\nError. You are using an obsolete build.xml\n" +
- "You need to delete it and regenerate it using\n" +
- "\tandroid update project\n");
- }
-}