summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/gnu/xml/libxmlj/util
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/xml/libxmlj/util')
-rw-r--r--libjava/classpath/gnu/xml/libxmlj/util/EmptyNodeList.java4
-rw-r--r--libjava/classpath/gnu/xml/libxmlj/util/NamedInputStream.java6
-rw-r--r--libjava/classpath/gnu/xml/libxmlj/util/StandaloneDocumentType.java12
-rw-r--r--libjava/classpath/gnu/xml/libxmlj/util/StandaloneLocator.java6
-rw-r--r--libjava/classpath/gnu/xml/libxmlj/util/XMLJ.java18
5 files changed, 23 insertions, 23 deletions
diff --git a/libjava/classpath/gnu/xml/libxmlj/util/EmptyNodeList.java b/libjava/classpath/gnu/xml/libxmlj/util/EmptyNodeList.java
index 24a08229ced..60019ddd4e5 100644
--- a/libjava/classpath/gnu/xml/libxmlj/util/EmptyNodeList.java
+++ b/libjava/classpath/gnu/xml/libxmlj/util/EmptyNodeList.java
@@ -1,4 +1,4 @@
-/* EmptyNodeList.java -
+/* EmptyNodeList.java -
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -58,5 +58,5 @@ implements NodeList
{
return 0;
}
-
+
}
diff --git a/libjava/classpath/gnu/xml/libxmlj/util/NamedInputStream.java b/libjava/classpath/gnu/xml/libxmlj/util/NamedInputStream.java
index 8d20ec4e57b..01b3af90dbd 100644
--- a/libjava/classpath/gnu/xml/libxmlj/util/NamedInputStream.java
+++ b/libjava/classpath/gnu/xml/libxmlj/util/NamedInputStream.java
@@ -1,4 +1,4 @@
-/* NamedInputStream.java -
+/* NamedInputStream.java -
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -54,7 +54,7 @@ extends FilterInputStream
{
private static int DETECT_BUFFER_SIZE = 50;
-
+
private String name;
NamedInputStream (String name, InputStream in, int size)
@@ -95,5 +95,5 @@ extends FilterInputStream
return ret;
}
}
-
+
}
diff --git a/libjava/classpath/gnu/xml/libxmlj/util/StandaloneDocumentType.java b/libjava/classpath/gnu/xml/libxmlj/util/StandaloneDocumentType.java
index d47cdb05d66..5c3316611f6 100644
--- a/libjava/classpath/gnu/xml/libxmlj/util/StandaloneDocumentType.java
+++ b/libjava/classpath/gnu/xml/libxmlj/util/StandaloneDocumentType.java
@@ -1,4 +1,4 @@
-/* StandaloneDocumentType.java -
+/* StandaloneDocumentType.java -
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -75,7 +75,7 @@ implements DocumentType
// TODO
return null;
}
-
+
public NamedNodeMap getNotations ()
{
// TODO
@@ -96,7 +96,7 @@ implements DocumentType
{
return null;
}
-
+
// -- Node --
public String getNodeName ()
@@ -109,7 +109,7 @@ implements DocumentType
{
return null;
}
-
+
public void setNodeValue (String nodeValue)
throws DOMException
{
@@ -254,12 +254,12 @@ implements DocumentType
{
return equals (other);
}
-
+
public String lookupPrefix (String namespace)
{
return null;
}
-
+
public boolean isDefaultNamespace (String namespace)
{
return false;
diff --git a/libjava/classpath/gnu/xml/libxmlj/util/StandaloneLocator.java b/libjava/classpath/gnu/xml/libxmlj/util/StandaloneLocator.java
index 5430330cc4e..75b40bdf169 100644
--- a/libjava/classpath/gnu/xml/libxmlj/util/StandaloneLocator.java
+++ b/libjava/classpath/gnu/xml/libxmlj/util/StandaloneLocator.java
@@ -1,4 +1,4 @@
-/* StandaloneLocator.java -
+/* StandaloneLocator.java -
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -65,12 +65,12 @@ implements Locator, SourceLocator
this.publicId = publicId;
this.systemId = systemId;
}
-
+
public String getPublicId ()
{
return publicId;
}
-
+
public String getSystemId ()
{
return systemId;
diff --git a/libjava/classpath/gnu/xml/libxmlj/util/XMLJ.java b/libjava/classpath/gnu/xml/libxmlj/util/XMLJ.java
index 0d5f9f689dc..8d954d0bec2 100644
--- a/libjava/classpath/gnu/xml/libxmlj/util/XMLJ.java
+++ b/libjava/classpath/gnu/xml/libxmlj/util/XMLJ.java
@@ -1,4 +1,4 @@
-/* XMLJ.java -
+/* XMLJ.java -
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -70,35 +70,35 @@ public final class XMLJ
static class XMLJShutdownHook
implements Runnable
{
-
+
public void run ()
{
// Make sure finalizers are run
System.gc ();
Runtime.getRuntime ().runFinalization ();
-
+
// Perform global cleanup on the native level
GnomeTransformerFactory.freeLibxsltGlobal ();
}
-
+
}
private static boolean initialised = false;
-
+
public static void init ()
{
if (!initialised)
{
System.loadLibrary ("xmlj");
-
- XMLJShutdownHook hook = new XMLJShutdownHook ();
+
+ XMLJShutdownHook hook = new XMLJShutdownHook ();
Runtime.getRuntime ().addShutdownHook (new Thread (hook));
}
initialised = true;
}
private static final int LOOKAHEAD = 50;
-
+
/**
* Returns an input stream for the specified input source.
* This returns a pushback stream that libxmlj can use to detect the
@@ -276,5 +276,5 @@ public final class XMLJ
}
return uri;
}
-
+
}
OpenPOWER on IntegriCloud