Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/log/record/WarningRecord.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/log/record/WarningRecord.java43
1 files changed, 0 insertions, 43 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/log/record/WarningRecord.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/log/record/WarningRecord.java
deleted file mode 100644
index 8267d7f5ac0..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/log/record/WarningRecord.java
+++ /dev/null
@@ -1,43 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.ote.core.log.record;
-
-import java.util.logging.Level;
-import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironmentAccessor;
-
-/**
- * @author Ryan D. Brooks
- */
-public class WarningRecord extends TestRecord {
-
- private static final long serialVersionUID = -3124953320400273382L;
-
- /**
- * WarningRecord Constructor. Sets up a Warning log message.
- *
- * @param source The object requesting the logging.
- * @param msg The log message.
- * @param timeStamp <b>True </b> if a timestamp should be recorded, <b>False </b> if not.
- */
- public WarningRecord(ITestEnvironmentAccessor source, String msg, boolean timeStamp) {
- super(source, Level.WARNING, msg, timeStamp);
- }
-
- /**
- * WarningRecord Constructor. Sets up a Warning log message.
- *
- * @param source The object requesting the logging.
- * @param msg The log message.
- */
- public WarningRecord(ITestEnvironmentAccessor source, String msg) {
- this(source, msg, true);
- }
-} \ No newline at end of file

Back to the top