From 59270e834d627064de4c160bf6ee585bee93ba9d Mon Sep 17 00:00:00 2001 From: samskivert Date: Tue, 8 Sep 2009 17:16:13 +0000 Subject: [PATCH] Added @Deprecated annotation. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2632 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/IntIntMap.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java/com/samskivert/util/IntIntMap.java b/src/java/com/samskivert/util/IntIntMap.java index 3a112147..3e490724 100644 --- a/src/java/com/samskivert/util/IntIntMap.java +++ b/src/java/com/samskivert/util/IntIntMap.java @@ -161,6 +161,7 @@ public class IntIntMap * * @deprecated use {@link #containsKey}. */ + @Deprecated public boolean contains (int key) { return (null != locateRecord(key));