From 0b58a2fb6bb3e866d8bdd1fd05fd81472605c754 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Wed, 1 Oct 2003 22:36:07 +0000 Subject: [PATCH] Add missing abstract keyword git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131212 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/collections/pairs/AbstractMapEntry.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/commons/collections/pairs/AbstractMapEntry.java b/src/java/org/apache/commons/collections/pairs/AbstractMapEntry.java index 44b7152ca..4101cd843 100644 --- a/src/java/org/apache/commons/collections/pairs/AbstractMapEntry.java +++ b/src/java/org/apache/commons/collections/pairs/AbstractMapEntry.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/pairs/Attic/AbstractMapEntry.java,v 1.2 2003/09/27 10:33:34 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/pairs/Attic/AbstractMapEntry.java,v 1.3 2003/10/01 22:36:07 scolebourne Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -63,14 +63,14 @@ import java.util.Map; * Abstract Pair class to assist with creating correct Map Entry implementations. * * @since Commons Collections 3.0 - * @version $Revision: 1.2 $ $Date: 2003/09/27 10:33:34 $ + * @version $Revision: 1.3 $ $Date: 2003/10/01 22:36:07 $ * * @author James Strachan * @author Michael A. Smith * @author Neil O'Toole * @author Stephen Colebourne */ -public class AbstractMapEntry extends AbstractKeyValue implements Map.Entry { +public abstract class AbstractMapEntry extends AbstractKeyValue implements Map.Entry { /** * Constructs a new entry with the given key and given value.