summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java')
-rw-r--r--qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java b/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
index 63e2f864e272..649f5dfa372d 100644
--- a/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
+++ b/qadevOOo/tests/java/ifc/xml/sax/_XDocumentHandler.java
@@ -76,30 +76,24 @@ import com.sun.star.xml.sax.XLocator;
public class _XDocumentHandler extends MultiMethodTest {
private static class DocumentLocator implements XLocator {
- public boolean aMethodCalled = false ;
-
private PrintWriter log = null ;
public DocumentLocator(PrintWriter log) {
this.log = log ;
}
public int getColumnNumber() {
log.println("getColumnNumber() method called.") ;
- aMethodCalled = true ;
return 10 ;
}
public int getLineNumber() {
log.println("getLineNumber() method called.") ;
- aMethodCalled = true ;
return 9 ;
}
public String getPublicId() {
log.println("getPublicId() method called.") ;
- aMethodCalled = true ;
return "file://d:/file.txt";
}
public String getSystemId() {
log.println("getSystemId() method called.") ;
- aMethodCalled = true ;
return "system";
}
}