diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-03-13 17:46:16 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-03-13 17:46:16 +0000 |
commit | 18ee1548dbb8e28ce98629a5a9dc19870ad4a28c (patch) | |
tree | 27edcd44657289a35b46f1b6debcc38361a91705 /java/demo/Freeze/library/LibraryI.java | |
parent | minor cleanups. (diff) | |
download | ice-18ee1548dbb8e28ce98629a5a9dc19870ad4a28c.tar.bz2 ice-18ee1548dbb8e28ce98629a5a9dc19870ad4a28c.tar.xz ice-18ee1548dbb8e28ce98629a5a9dc19870ad4a28c.zip |
fix.
Diffstat (limited to 'java/demo/Freeze/library/LibraryI.java')
-rw-r--r-- | java/demo/Freeze/library/LibraryI.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/demo/Freeze/library/LibraryI.java b/java/demo/Freeze/library/LibraryI.java index 8f1fd783033..f66cbf6f2cc 100644 --- a/java/demo/Freeze/library/LibraryI.java +++ b/java/demo/Freeze/library/LibraryI.java @@ -70,7 +70,7 @@ class LibraryI extends _LibraryDisp } newIsbnSeq[length] = description.isbn; - _authors.put(description.authors, newIsbnSeq); + _authors.fastPut(description.authors, newIsbnSeq); return book; } @@ -196,7 +196,7 @@ class LibraryI extends _LibraryDisp // If there are no further associated isbn numbers then remove // the record. // - _authors.remove(description.authors); + _authors.fastRemove(description.authors); } else { @@ -211,7 +211,7 @@ class LibraryI extends _LibraryDisp System.arraycopy(isbnSeq, i+1, newIsbnSeq, i, isbnSeq.length - i - 1); } - _authors.put(description.authors, newIsbnSeq); + _authors.fastPut(description.authors, newIsbnSeq); } } catch(Freeze.DBException ex) |