summaryrefslogtreecommitdiff
path: root/java/test/Ice/classLoader/PluginFactoryI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/classLoader/PluginFactoryI.java')
-rw-r--r--java/test/Ice/classLoader/PluginFactoryI.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/java/test/Ice/classLoader/PluginFactoryI.java b/java/test/Ice/classLoader/PluginFactoryI.java
deleted file mode 100644
index 2416e04c420..00000000000
--- a/java/test/Ice/classLoader/PluginFactoryI.java
+++ /dev/null
@@ -1,32 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-package test.Ice.classLoader;
-
-public class PluginFactoryI implements Ice.PluginFactory
-{
- static class PluginI implements Ice.Plugin
- {
- @Override
- public void initialize()
- {
- }
-
- @Override
- public void destroy()
- {
- }
- }
-
- @Override
- public Ice.Plugin create(Ice.Communicator communicator, String name, String[] args)
- {
- return new PluginI();
- }
-}