From a600bcae9c7caddf243ca117ab7f18323882c0e7 Mon Sep 17 00:00:00 2001 From: "ray.j.greenwell" Date: Sat, 5 Dec 2009 01:23:52 +0000 Subject: [PATCH] Slap on the old @Override; caught by David "David Hoover" Hoover. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2667 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/AbstractIntSet.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/com/samskivert/util/AbstractIntSet.java b/src/java/com/samskivert/util/AbstractIntSet.java index 996359f1..6cb2b43e 100644 --- a/src/java/com/samskivert/util/AbstractIntSet.java +++ b/src/java/com/samskivert/util/AbstractIntSet.java @@ -3,7 +3,7 @@ // // samskivert library - useful routines for java programs // Copyright (C) 2001-2008 Michael Bayne -// +// // This library is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 2.1 of the License, or @@ -60,6 +60,7 @@ public abstract class AbstractIntSet extends AbstractSet * *

This implementation simply counts the elements in the interator. */ + @Override public int size () { // dumb implementation. You should override.