[Fb-contrib-commit] SF.net SVN: fb-contrib:[1212] trunk/fb-contrib/samples/FCBL_Sample.java
Brought to you by:
dbrosius
From: <dbr...@us...> - 2009-07-03 04:32:36
|
Revision: 1212 http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1212&view=rev Author: dbrosius Date: 2009-07-03 04:32:35 +0000 (Fri, 03 Jul 2009) Log Message: ----------- add false negative from #2813241 Modified Paths: -------------- trunk/fb-contrib/samples/FCBL_Sample.java Modified: trunk/fb-contrib/samples/FCBL_Sample.java =================================================================== --- trunk/fb-contrib/samples/FCBL_Sample.java 2009-07-03 04:06:08 UTC (rev 1211) +++ trunk/fb-contrib/samples/FCBL_Sample.java 2009-07-03 04:32:35 UTC (rev 1212) @@ -7,6 +7,8 @@ int hoo; private int fp; private String test; + private int x = 1; + private int y = 2; public FCBL_Sample() { @@ -17,6 +19,12 @@ fp = 4; } + public void method1() { + x = 50; + System.out.println(x); + System.out.println(y); +} + public void test1() { foo = 2; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |