[jsword-svn] jsword-support/java/limbo/org/crosswire/common/net s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Fri Apr 1 10:09:31 MST 2005
Update of /cvs/jsword/jsword-support/java/limbo/org/crosswire/common/net
In directory www.crosswire.org:/tmp/cvs-serv5018/java/limbo/org/crosswire/common/net
Modified Files:
Cookie.java
Log Message:
Improved ranking, bible display and fixed a few bugs.
Index: Cookie.java
===================================================================
RCS file: /cvs/jsword/jsword-support/java/limbo/org/crosswire/common/net/Cookie.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Cookie.java 25 Sep 2004 21:27:13 -0000 1.4
--- Cookie.java 1 Apr 2005 17:09:29 -0000 1.5
***************
*** 375,392 ****
}
! /**
! * Overrides the standard <code>java.lang.Object.clone</code>
! * method to return a copy of this cookie.
! */
public Object clone()
{
try
{
! return super.clone();
}
catch (CloneNotSupportedException e)
{
! throw new RuntimeException(e.getMessage());
}
}
--- 375,394 ----
}
!
! /* (non-Javadoc)
! * @see java.lang.Object#clone()
! */
public Object clone()
{
+ Object clone = null;
try
{
! clone = super.clone();
}
catch (CloneNotSupportedException e)
{
! assert false: e;
}
+ return clone;
}
More information about the jsword-svn
mailing list