diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-03-13 18:01:58 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-03-13 18:01:58 +0000 |
commit | 57c45d4f9ed283c74f4e95999146eca55b78968d (patch) | |
tree | 656aa288675b11b37df0da5f94f8462ea576cd5a /java/demo/Freeze/library/Server.java | |
parent | Cleanup (diff) | |
download | ice-57c45d4f9ed283c74f4e95999146eca55b78968d.tar.bz2 ice-57c45d4f9ed283c74f4e95999146eca55b78968d.tar.xz ice-57c45d4f9ed283c74f4e95999146eca55b78968d.zip |
cleanup
Diffstat (limited to 'java/demo/Freeze/library/Server.java')
-rw-r--r-- | java/demo/Freeze/library/Server.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/demo/Freeze/library/Server.java b/java/demo/Freeze/library/Server.java index b892c7e7606..d3e294d1f8c 100644 --- a/java/demo/Freeze/library/Server.java +++ b/java/demo/Freeze/library/Server.java @@ -70,13 +70,13 @@ class LibraryServer extends Freeze.Application // // Create the library, and add it to the Object Adapter. // - LibraryI phoneBook = new LibraryI(adapter, dbAuthors, evictor); - adapter.add(phoneBook, Ice.Util.stringToIdentity("library")); + LibraryI library = new LibraryI(adapter, dbAuthors, evictor); + adapter.add(library, Ice.Util.stringToIdentity("library")); // // Create and install a factory and initializer for books. // - Ice.ObjectFactory bookFactory = new BookFactory(phoneBook, evictor); + Ice.ObjectFactory bookFactory = new BookFactory(library); communicator().addObjectFactory(bookFactory, "::Book"); // |