Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/dispo/ImportCoverageMethodsCounter.java')
-rw-r--r--plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/dispo/ImportCoverageMethodsCounter.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/dispo/ImportCoverageMethodsCounter.java b/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/dispo/ImportCoverageMethodsCounter.java
deleted file mode 100644
index 2b36ed30646..00000000000
--- a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/dispo/ImportCoverageMethodsCounter.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2013 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.coverage.dispo;
-
-import org.eclipse.osee.framework.jdk.core.type.CountingMap;
-
-public class ImportCoverageMethodsCounter {
- public int numItems = 0;
- public int numDispo = 0;
- public int numMatch = 0;
- public int numNoMatch = 0;
- public int numImported = 0;
- public CountingMap<String> fileToErrorCount = new CountingMap<String>();
-
- @Override
- public String toString() {
- return String.format(
- "Num Items %s; Num Dispo %s; Num Match %s; Num NoMatch Items %s; Num NoMatch Files %s; Num Imported %s",
- numItems, numDispo, numMatch, numNoMatch, fileToErrorCount.getCounts().size(), numImported);
- }
-}

Back to the top