aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/lang/ref/PhantomReference.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/lang/ref/PhantomReference.java')
-rw-r--r--libjava/classpath/java/lang/ref/PhantomReference.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/java/lang/ref/PhantomReference.java b/libjava/classpath/java/lang/ref/PhantomReference.java
index 67e97d3..29215ea 100644
--- a/libjava/classpath/java/lang/ref/PhantomReference.java
+++ b/libjava/classpath/java/lang/ref/PhantomReference.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -44,7 +44,7 @@ package java.lang.ref;
* finalized. This is the reason, why <code>get()</code> always
* returns null.
*
- * @author Jochen Hoenicke
+ * @author Jochen Hoenicke
*/
public class PhantomReference<T>
extends Reference<T>
@@ -60,11 +60,11 @@ public class PhantomReference<T>
{
super(referent, q);
}
-
+
/**
* Returns the object, this reference refers to.
* @return <code>null</code>, since the refered object may be
- * finalized and thus not accessible.
+ * finalized and thus not accessible.
*/
public T get()
{