[Fb-contrib-commit] SF.net SVN: fb-contrib: [399] trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/det
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2006-04-04 21:36:20
|
Revision: 399 Author: dbrosius Date: 2006-04-04 14:36:11 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=399&view=rev Log Message: ----------- add finals Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/FieldCouldBeLocal.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/FieldCouldBeLocal.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/FieldCouldBeLocal.java 2006-04-04 21:31:41 UTC (rev 398) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/FieldCouldBeLocal.java 2006-04-04 21:36:11 UTC (rev 399) @@ -242,7 +242,7 @@ * creates a FieldInfo from an annotation, and assumes no source line information * @param fa the field annotation for this field */ - public FieldInfo(FieldAnnotation fa) { + public FieldInfo(final FieldAnnotation fa) { fieldAnnotation = fa; srcLineAnnotation = null; } @@ -251,7 +251,7 @@ * set the source line annotation of first use for this field * @param sla the source line annotation */ - public void setSrcLineAnnotation(SourceLineAnnotation sla) { + public void setSrcLineAnnotation(final SourceLineAnnotation sla) { if (srcLineAnnotation == null) srcLineAnnotation = sla; } @@ -286,7 +286,7 @@ * @param bb the basic block to parse * @param fields the fields to look for first use */ - public BlockState(BasicBlock bb, Set<String> fields) { + public BlockState(final BasicBlock bb, final Set<String> fields) { basicBlock = bb; uncheckedFields = new HashSet<String>(fields); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |