Revision: 865
http://svn.sourceforge.net/fb-contrib/?rev=865&view=rev
Author: dbrosius
Date: 2007-02-19 17:36:20 -0800 (Mon, 19 Feb 2007)
Log Message:
-----------
more isb fixes
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-02-20 01:35:46 UTC (rev 864)
+++ trunk/fb-contrib/samples/ISB_Sample.java 2007-02-20 01:36:20 UTC (rev 865)
@@ -72,9 +72,11 @@
public String testFPISB9(String a, String b, String c)
{
+ String d = a + c;
+
StringBuilder sb = new StringBuilder();
- sb.append(ISB_Sample.getBigger(a + b, c));
+ sb.append(ISB_Sample.getBigger(a + b, d));
return sb.toString();
}
@@ -85,4 +87,12 @@
return a;
return b;
}
+
+ public String testFPISB10()
+ {
+ int i = 1;
+ int j = 2;
+ throw new RuntimeException("i=" + i + ", j=" + j);
+ }
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|