Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.releng.setup/src/org/eclipse/emf/cdo/releng/setup/helper/Progress.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.releng.setup/src/org/eclipse/emf/cdo/releng/setup/helper/Progress.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng.setup/src/org/eclipse/emf/cdo/releng/setup/helper/Progress.java b/plugins/org.eclipse.emf.cdo.releng.setup/src/org/eclipse/emf/cdo/releng/setup/helper/Progress.java
deleted file mode 100644
index 4bfe77cae3..0000000000
--- a/plugins/org.eclipse.emf.cdo.releng.setup/src/org/eclipse/emf/cdo/releng/setup/helper/Progress.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright (c) 2013 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Eike Stepper - initial API and implementation
- */
-package org.eclipse.emf.cdo.releng.setup.helper;
-
-/**
- * @author Eike Stepper
- */
-public final class Progress
-{
- private static final ProgressLog DEFAULT = new ProgressLog()
- {
- public boolean isCancelled()
- {
- return false;
- }
-
- public void addLine(String line)
- {
- System.out.println(line);
- }
- };
-
- private static ProgressLog log;
-
- public static ProgressLog log()
- {
- if (log == null)
- {
- return DEFAULT;
- }
-
- return log;
- }
-
- public static void set(ProgressLog log)
- {
- Progress.log = log;
- }
-}

Back to the top