Update of /cvsroot/jicarilla/jicarilla-sandbox/platform/components/http/api/src/java/org/jicarilla/net
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2537/components/http/api/src/java/org/jicarilla/net
Modified Files:
Event.java SocketServerException.java
Log Message:
Ran some code analysis tools on the code and changed approximately 200 small things based on that. Nothing shocking (I hope!)
Index: Event.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-sandbox/platform/components/http/api/src/java/org/jicarilla/net/Event.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Event.java 4 Jan 2004 16:10:17 -0000 1.2
+++ Event.java 26 Feb 2004 16:51:54 -0000 1.3
@@ -55,12 +55,12 @@
this( null );
}
- public Event( SocketChannel channel )
+ public Event( final SocketChannel channel )
{
this( channel, new HashMap() );
}
- public Event( SocketChannel channel, Map context )
+ public Event( final SocketChannel channel, final Map context )
{
setContext( context );
setChannel( channel );
@@ -74,7 +74,7 @@
return m_channel;
}
- public void setChannel( SocketChannel channel )
+ public void setChannel( final SocketChannel channel )
{
m_channel = channel;
}
@@ -84,7 +84,7 @@
return m_request;
}
- public void setRequest( Object request )
+ public void setRequest( final Object request )
{
m_request = request;
}
@@ -94,7 +94,7 @@
return m_response;
}
- public void setResponse( Object response )
+ public void setResponse( final Object response )
{
m_response = response;
}
@@ -104,7 +104,7 @@
return m_context;
}
- public void setContext( Map context )
+ public void setContext( final Map context )
{
m_context = context;
}
Index: SocketServerException.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-sandbox/platform/components/http/api/src/java/org/jicarilla/net/SocketServerException.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- SocketServerException.java 4 Jan 2004 16:10:17 -0000 1.2
+++ SocketServerException.java 26 Feb 2004 16:51:54 -0000 1.3
@@ -37,11 +37,11 @@
*/
public class SocketServerException extends CascadingException implements Serializable
{
- public SocketServerException( String msg )
+ public SocketServerException( final String msg )
{
super( msg );
}
- public SocketServerException( String msg, Throwable t )
+ public SocketServerException( final String msg, final Throwable t )
{
super( msg, t );
}
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.