[Fb-contrib-commit] SF.net SVN: fb-contrib: [563] trunk/fb-contrib/samples/ISB_Sample.java
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-06-09 03:29:53
|
Revision: 563 Author: dbrosius Date: 2006-06-08 20:29:47 -0700 (Thu, 08 Jun 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=563&view=rev Log Message: ----------- add fp test that is now fixed Modified Paths: -------------- trunk/fb-contrib/samples/ISB_Sample.java Modified: trunk/fb-contrib/samples/ISB_Sample.java =================================================================== --- trunk/fb-contrib/samples/ISB_Sample.java 2006-06-09 02:04:31 UTC (rev 562) +++ trunk/fb-contrib/samples/ISB_Sample.java 2006-06-09 03:29:47 UTC (rev 563) @@ -38,11 +38,19 @@ return msg; } - public String testISB8(int a) + public String testISB6(int a) { return "" + a; } + public String testISB7(String s) + { + StringBuffer sb = new StringBuffer(); + sb.append("foo"); + sb.append(sb.toString()); + return sb.toString(); + } + public String toString() { String a = System.getProperty("foo"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |