Update of /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30409/src/com/mebigfatguy/fbcontrib/detect
Modified Files:
NeedlessAutoboxing.java
Log Message:
add @Override s
Index: NeedlessAutoboxing.java
===================================================================
RCS file: /cvsroot/fb-contrib/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/NeedlessAutoboxing.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- NeedlessAutoboxing.java 4 Jan 2006 02:40:42 -0000 1.5
+++ NeedlessAutoboxing.java 4 Feb 2006 01:23:06 -0000 1.6
@@ -62,14 +62,17 @@
*
* @return a clone of this object
*/
+ @Override
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
+ @Override
public void visitMethod(Method obj) {
state = SEEN_NOTHING;
}
+ @Override
public void sawOpcode(int seen) {
switch (state) {
|