[Fb-contrib-commit] fb-contrib/src/com/mebigfatguy/fbcontrib/detect AbnormalFinallyBlockReturn.java,
Brought to you by:
dbrosius
From: Dave B. <dbr...@us...> - 2006-03-11 06:35:28
|
Update of /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29544/src/com/mebigfatguy/fbcontrib/detect Modified Files: AbnormalFinallyBlockReturn.java AbstractOverriddenMethod.java Log Message: javadoc Index: AbstractOverriddenMethod.java =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbstractOverriddenMethod.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- AbstractOverriddenMethod.java 4 Jan 2006 02:40:42 -0000 1.2 +++ AbstractOverriddenMethod.java 11 Mar 2006 06:35:25 -0000 1.3 @@ -29,7 +29,7 @@ import edu.umd.cs.findbugs.visitclass.PreorderVisitor; /** - * finds methods that are declared abstract but override concrete methods in a superclass + * finds methods that are declared abstract but override concrete methods in a superclass. */ public class AbstractOverriddenMethod extends PreorderVisitor implements Detector, StatelessDetector { private BugReporter bugReporter; Index: AbnormalFinallyBlockReturn.java =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/AbnormalFinallyBlockReturn.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- AbnormalFinallyBlockReturn.java 1 Mar 2006 04:52:03 -0000 1.9 +++ AbnormalFinallyBlockReturn.java 11 Mar 2006 06:35:25 -0000 1.10 @@ -40,7 +40,7 @@ private int loadedReg; /** - * constructs a AFBR detector given the reporter to report bugs on + * constructs a AFBR detector given the reporter to report bugs on. * @param bugReporter the sync of bug reports */ @@ -49,9 +49,10 @@ } /** - * clone this detector so that it can be a StatelessDetector + * clone this detector so that it can be a StatelessDetector. * * @return a clone of this object + * @throws CloneNotSupportedException should not happen */ @Override public Object clone() throws CloneNotSupportedException { @@ -71,7 +72,7 @@ } /** - * overrides the visitor to collect finally block info + * overrides the visitor to collect finally block info. * * @param obj the code object to scan for finally blocks */ @@ -95,7 +96,7 @@ } /** - * overrides the visitor to find return/exceptions from the finally block + * overrides the visitor to find return/exceptions from the finally block. * * @param seen the opcode that is being visited */ @@ -155,7 +156,7 @@ } /** - * holds the finally block information for a particular method + * holds the finally block information for a particular method. */ public static class FinallyBlockInfo { |