[Fb-contrib-commit] SF.net SVN: fb-contrib: [914] trunk/fb-contrib/samples/ISB_Sample.java
Brought to you by:
dbrosius
From: <dbr...@us...> - 2007-09-19 01:40:40
|
Revision: 914 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=914&view=rev Author: dbrosius Date: 2007-09-18 18:40:44 -0700 (Tue, 18 Sep 2007) Log Message: ----------- add extra case Modified Paths: -------------- trunk/fb-contrib/samples/ISB_Sample.java Modified: trunk/fb-contrib/samples/ISB_Sample.java =================================================================== --- trunk/fb-contrib/samples/ISB_Sample.java 2007-09-19 01:30:49 UTC (rev 913) +++ trunk/fb-contrib/samples/ISB_Sample.java 2007-09-19 01:40:44 UTC (rev 914) @@ -70,6 +70,12 @@ return sb.toString(); } + public void testCtorIssue(String a) + { + StringBuffer sb1 = new StringBuffer(a + "1"); + StringBuilder sb2 = new StringBuilder("2" + a); + } + public String testFPISB9(String a, String b, String c) { String d = a + c; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |