summaryrefslogtreecommitdiff
path: root/libjava/classpath/gnu/CORBA/SocketRepository.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/CORBA/SocketRepository.java')
-rw-r--r--libjava/classpath/gnu/CORBA/SocketRepository.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/libjava/classpath/gnu/CORBA/SocketRepository.java b/libjava/classpath/gnu/CORBA/SocketRepository.java
index 5d4a5099c15..71e073adb42 100644
--- a/libjava/classpath/gnu/CORBA/SocketRepository.java
+++ b/libjava/classpath/gnu/CORBA/SocketRepository.java
@@ -57,7 +57,7 @@ public class SocketRepository
* The socket map.
*/
private static HashMap sockets = new HashMap();
-
+
/**
* Put a socket. This method also discards all not reusable sockets from
* the map.
@@ -74,28 +74,28 @@ public class SocketRepository
gc();
}
}
-
+
/**
* Removes all non reusable sockets. As it is private,
- * we know we call from the synchronized code already.
+ * we know we call from the synchronized code already.
*/
private static void gc()
{
Iterator iter = sockets.entrySet().iterator();
-
+
Map.Entry e;
Socket sx;
-
+
while (iter.hasNext())
{
e = (Map.Entry) iter.next();
sx = (Socket) e.getValue();
-
+
if (not_reusable(sx))
iter.remove();
}
}
-
+
/**
* Return true if the socket is no longer reusable.
*/
@@ -107,9 +107,9 @@ public class SocketRepository
/**
* Get a socket.
- *
+ *
* @param key a socket key.
- *
+ *
* @return an opened socket for reuse, null if no such available or it is
* closed, its input or output has been shutown or otherwise the socket is not
* reuseable.
@@ -145,4 +145,4 @@ public class SocketRepository
}
}
}
-} \ No newline at end of file
+}