Revision: 970
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=970&view=rev
Author: dbrosius
Date: 2007-11-21 05:26:13 -0800 (Wed, 21 Nov 2007)
Log Message:
-----------
add test
Modified Paths:
--------------
trunk/fb-contrib/samples/LSYC_Sample.java
Modified: trunk/fb-contrib/samples/LSYC_Sample.java
===================================================================
--- trunk/fb-contrib/samples/LSYC_Sample.java 2007-11-11 01:43:13 UTC (rev 969)
+++ trunk/fb-contrib/samples/LSYC_Sample.java 2007-11-21 13:26:13 UTC (rev 970)
@@ -42,4 +42,13 @@
return main;
}
+
+ public String printString()
+ {
+ StringBuffer buffer = new StringBuffer();
+ for(int i=0; i<50; i++)
+ buffer.append ("Findbugs ");
+ return buffer.toString ();
+ }
+
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|