[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: whitespace changes

Kaffe CVS cvs-commits at kaffe.org
Mon Dec 6 13:35:36 PST 2004


PatchSet 5558 
Date: 2004/12/06 21:31:43
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath: whitespace changes

Members: 
	ChangeLog:1.3104->1.3105 
	libraries/javalib/gnu/java/nio/NIOServerSocket.java:1.6->1.7 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3104 kaffe/ChangeLog:1.3105
--- kaffe/ChangeLog:1.3104	Mon Dec  6 21:23:53 2004
+++ kaffe/ChangeLog	Mon Dec  6 21:31:43 2004
@@ -1,3 +1,8 @@
+2004-12-06  Dalibor Topic  <robilad at kaffe.org>
+
+	* libraries/javalib/gnu/java/nio/NIOServerSocket.java:
+	Resynced with GNU Classpath.
+
 2004-12-06  Guilhem Lavaux  <guilhem at kaffe.org>
 
 	* kaffe/kaffevm/systems/unix-pthreads/lock-impl.c
Index: kaffe/libraries/javalib/gnu/java/nio/NIOServerSocket.java
diff -u kaffe/libraries/javalib/gnu/java/nio/NIOServerSocket.java:1.6 kaffe/libraries/javalib/gnu/java/nio/NIOServerSocket.java:1.7
--- kaffe/libraries/javalib/gnu/java/nio/NIOServerSocket.java:1.6	Fri Dec  3 00:04:32 2004
+++ kaffe/libraries/javalib/gnu/java/nio/NIOServerSocket.java	Mon Dec  6 21:31:46 2004
@@ -67,24 +67,24 @@
   {
     try
       {
-       final Object t = this;
-       final Method method = ServerSocket.class.getDeclaredMethod("getImpl", new Class[0]);
-       method.setAccessible(true);
-       PrivilegedExceptionAction action = new PrivilegedExceptionAction()
-         {
-           public Object run() throws Exception
-           {
-             return method.invoke(t, new Object[0]);
-           }
-         };
-       return (PlainSocketImpl) AccessController.doPrivileged(action);
+	final Object t = this;
+	final Method method = ServerSocket.class.getDeclaredMethod("getImpl", new Class[0]);
+	method.setAccessible(true);
+	PrivilegedExceptionAction action = new PrivilegedExceptionAction()
+	  {
+	    public Object run() throws Exception
+	    {
+	      return method.invoke(t, new Object[0]);
+	    }
+	  };
+	return (PlainSocketImpl) AccessController.doPrivileged(action);
       }
     catch (Exception e)
       {
-       // This should never happen.
-       Error error = new InternalError("unable to invoke method ServerSocket.getImpl()");
-       error.initCause(e);
-       throw error;
+	// This should never happen.
+	Error error = new InternalError("unable to invoke method ServerSocket.getImpl()");
+	error.initCause(e);
+	throw error;
       }
   }
 




More information about the kaffe mailing list