summaryrefslogtreecommitdiff
path: root/js/src/Ice/ObjectFactory.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/Ice/ObjectFactory.js')
-rw-r--r--js/src/Ice/ObjectFactory.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/js/src/Ice/ObjectFactory.js b/js/src/Ice/ObjectFactory.js
deleted file mode 100644
index 178954b9f08..00000000000
--- a/js/src/Ice/ObjectFactory.js
+++ /dev/null
@@ -1,21 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2017 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.
-//
-// **********************************************************************
-
-var Ice = require("../Ice/Class").Ice;
-Ice.ObjectFactory = Ice.Class({
- create: function(type)
- {
- throw new Error("not implemented");
- },
- destroy: function()
- {
- throw new Error("not implemented");
- }
-});
-module.exports.Ice = Ice;