diff options
Diffstat (limited to 'java/src/IceInternal/LocatorAdapterTable.java')
-rw-r--r-- | java/src/IceInternal/LocatorAdapterTable.java | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/java/src/IceInternal/LocatorAdapterTable.java b/java/src/IceInternal/LocatorAdapterTable.java deleted file mode 100644 index f5bf2fbb8b1..00000000000 --- a/java/src/IceInternal/LocatorAdapterTable.java +++ /dev/null @@ -1,49 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2002 -// ZeroC, Inc. -// Billerica, MA, USA -// -// All Rights Reserved. -// -// Ice is free software; you can redistribute it and/or modify it under -// the terms of the GNU General Public License version 2 as published by -// the Free Software Foundation. -// -// ********************************************************************** - -package IceInternal; - -public final class LocatorAdapterTable -{ - LocatorAdapterTable() - { - } - - synchronized void - clear() - { - _table.clear(); - } - - synchronized IceInternal.Endpoint[] - get(String adapter) - { - return (IceInternal.Endpoint[])_table.get(adapter); - } - - synchronized void - add(String adapter, IceInternal.Endpoint[] endpoints) - { - _table.put(adapter, endpoints); - } - - synchronized IceInternal.Endpoint[] - remove(String adapter) - { - return (IceInternal.Endpoint[])_table.remove(adapter); - } - - private java.util.HashMap _table = new java.util.HashMap(); -}; - |