summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/stats
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2012-09-27 00:52:17 -0300
committerNoel Power <noel.power@suse.com>2012-09-27 12:22:04 +0100
commitd3f60c050ab8489976c6b5684b4d64c7622a9d50 (patch)
tree3713758794a82ab827a83a728141d834870268be /qadevOOo/runner/stats
parentc73745117d7ce0dc6020020b49120ef3ba350e78 (diff)
fdo#51304: Remove @author and more commented code
More tags removed and with it, more commented code was found. So remove it all. Not functional changes here, just a cleanup. Change-Id: Id4a6b3126ca32f3460dec3056b9caa370d0ee69c Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
Diffstat (limited to 'qadevOOo/runner/stats')
-rw-r--r--qadevOOo/runner/stats/DataBaseOutProducer.java15
-rw-r--r--qadevOOo/runner/stats/SimpleOutProducer.java5
2 files changed, 1 insertions, 19 deletions
diff --git a/qadevOOo/runner/stats/DataBaseOutProducer.java b/qadevOOo/runner/stats/DataBaseOutProducer.java
index 046440465196..129d1dd6bb55 100644
--- a/qadevOOo/runner/stats/DataBaseOutProducer.java
+++ b/qadevOOo/runner/stats/DataBaseOutProducer.java
@@ -22,10 +22,6 @@ import share.DescEntry;
import java.util.HashMap;
-/**
- *
- * @author sg128468
- */
public abstract class DataBaseOutProducer implements LogWriter {
protected HashMap<String,Object> mSqlInput = null;
protected HashMap<String, String[]> mSqlOutput = null;
@@ -78,14 +74,9 @@ public abstract class DataBaseOutProducer implements LogWriter {
return true;
}
- /**
- *
- *
- */
public boolean summary(DescEntry entry) {
mSqlExec.openConnection();
findTypeInEntryTree(entry, entry.Logger);
-// checkDataBase(entry.Logger);
mSqlExec.closeConnection();
return true;
}
@@ -189,10 +180,4 @@ public abstract class DataBaseOutProducer implements LogWriter {
* Abstract method, so derived classes have to overwrite it.
*/
protected abstract boolean insertEntry(LogWriter log);
-
- /**
- *
- protected abstract boolean checkDataBase(LogWriter log);
- */
-
}
diff --git a/qadevOOo/runner/stats/SimpleOutProducer.java b/qadevOOo/runner/stats/SimpleOutProducer.java
index 2c755045f90c..656e83c795fc 100644
--- a/qadevOOo/runner/stats/SimpleOutProducer.java
+++ b/qadevOOo/runner/stats/SimpleOutProducer.java
@@ -19,10 +19,7 @@
package stats;
import share.LogWriter;
-/**
- *
- * @author sw93809
- */
+
public class SimpleOutProducer implements LogWriter {