summaryrefslogtreecommitdiff
path: root/java/demo/Freeze/library/LibraryI.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2002-03-13 17:46:16 +0000
committerMatthew Newhook <matthew@zeroc.com>2002-03-13 17:46:16 +0000
commit18ee1548dbb8e28ce98629a5a9dc19870ad4a28c (patch)
tree27edcd44657289a35b46f1b6debcc38361a91705 /java/demo/Freeze/library/LibraryI.java
parentminor cleanups. (diff)
downloadice-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.java6
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)