summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper')
-rw-r--r--qadevOOo/runner/helper/APIDescGetter.java15
-rw-r--r--qadevOOo/runner/helper/PropertyHandlerImpl.java7
2 files changed, 7 insertions, 15 deletions
diff --git a/qadevOOo/runner/helper/APIDescGetter.java b/qadevOOo/runner/helper/APIDescGetter.java
index ef1e7513db73..2e92a5711868 100644
--- a/qadevOOo/runner/helper/APIDescGetter.java
+++ b/qadevOOo/runner/helper/APIDescGetter.java
@@ -259,7 +259,7 @@ public class APIDescGetter extends DescGetter
}
protected static DescEntry[] getSubEntries(BufferedReader cvsFile,
- DescEntry parent, boolean debug)
+ DescEntry parent)
{
String line = "";
String old_ifc_name = "";
@@ -621,7 +621,7 @@ public class APIDescGetter extends DescGetter
theEntry.entryName + "'");
}
- DescEntry[] subEntries = getSubEntries(csvFile, theEntry, debug);
+ DescEntry[] subEntries = getSubEntries(csvFile, theEntry);
theEntry.SubEntryCount = subEntries.length;
theEntry.SubEntries = subEntries;
@@ -708,7 +708,7 @@ public class APIDescGetter extends DescGetter
return setErrorDescription(aEntry, "couldn't find file '" + aUrl + "'");
}
- DescEntry[] subEntries = getSubEntries(csvFile, aEntry, debug);
+ DescEntry[] subEntries = getSubEntries(csvFile, aEntry);
aEntry.SubEntryCount = subEntries.length;
aEntry.SubEntries = subEntries;
@@ -759,7 +759,7 @@ public class APIDescGetter extends DescGetter
System.out.println("## reading from File " + descPath);
}
- scenario = getScenarioFromDirectory(descPath, job, debug);
+ scenario = getScenarioFromDirectory(descPath, job);
}
else
{
@@ -768,14 +768,13 @@ public class APIDescGetter extends DescGetter
System.out.println("## reading from jar");
}
- scenario = getScenarioFromClassPath(job, debug);
+ scenario = getScenarioFromClassPath(job);
}
return scenario;
}
- protected String[] getScenarioFromDirectory(String descPath, String job,
- boolean debug)
+ protected String[] getScenarioFromDirectory(String descPath, String job)
{
String[] modules = null;
ArrayList<String> componentList = new ArrayList<String>();
@@ -829,7 +828,7 @@ public class APIDescGetter extends DescGetter
}
- protected String[] getScenarioFromClassPath(String job, boolean debug)
+ protected String[] getScenarioFromClassPath(String job)
{
String subdir = "/";
diff --git a/qadevOOo/runner/helper/PropertyHandlerImpl.java b/qadevOOo/runner/helper/PropertyHandlerImpl.java
index 873edc4782ed..7fd2fb011e36 100644
--- a/qadevOOo/runner/helper/PropertyHandlerImpl.java
+++ b/qadevOOo/runner/helper/PropertyHandlerImpl.java
@@ -18,7 +18,6 @@
package helper;
import com.sun.star.inspection.LineDescriptor;
-import com.sun.star.inspection.XPropertyControlFactory;
import com.sun.star.inspection.XPropertyHandler;
/**
@@ -236,10 +235,4 @@ public class PropertyHandlerImpl implements XPropertyHandler{
return false;
}
- /**
- * This method currently does nothing
- */
- public void describePropertyLine(String string, LineDescriptor[] lineDescriptor, XPropertyControlFactory xPropertyControlFactory) {
- }
-
}