Revision: 471
Author: dbrosius
Date: 2006-04-17 20:01:31 -0700 (Mon, 17 Apr 2006)
ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=471&view=rev
Log Message:
-----------
there's a false positive here somewhere, can't find a sample
Modified Paths:
--------------
trunk/fb-contrib/samples/FCBL_Sample.java
Modified: trunk/fb-contrib/samples/FCBL_Sample.java
===================================================================
--- trunk/fb-contrib/samples/FCBL_Sample.java 2006-04-18 02:54:55 UTC (rev 470)
+++ trunk/fb-contrib/samples/FCBL_Sample.java 2006-04-18 03:01:31 UTC (rev 471)
@@ -6,6 +6,7 @@
protected int boo;
int hoo;
private int fp;
+ private String test;
public FCBL_Sample()
{
@@ -28,4 +29,22 @@
{
boo = fp;
}
+
+ public void test3(String in)
+ {
+ boolean found = false;
+ if (in.equals("boo"))
+ test = "boo";
+ else if (in.equals("hoo"))
+ test = "hoo";
+ else if (in.equals("moo"))
+ {
+ if (test.equals("loo") && !found)
+ {
+ found = true;
+ }
+ }
+
+ test = "woowoo";
+ }
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|