diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-23 21:17:04 +0000 |
commit | 59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch) | |
tree | c3ed292df270f11157decb83827d9af4144db52d /java/demo/Freeze/library/Collocated.java | |
parent | file run.py was initially added on branch location. (diff) | |
download | ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.bz2 ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.xz ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.zip |
removed spaces after keywords
Diffstat (limited to 'java/demo/Freeze/library/Collocated.java')
-rw-r--r-- | java/demo/Freeze/library/Collocated.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/demo/Freeze/library/Collocated.java b/java/demo/Freeze/library/Collocated.java index 1cdc2e83ee5..5c49fd24a05 100644 --- a/java/demo/Freeze/library/Collocated.java +++ b/java/demo/Freeze/library/Collocated.java @@ -22,7 +22,7 @@ class LibraryCollocated extends Freeze.Application // Create an Evictor for books. // Freeze.Evictor evictor; - if (properties.getPropertyAsInt("Library.SaveAfterMutatingOperation") > 0) + if(properties.getPropertyAsInt("Library.SaveAfterMutatingOperation") > 0) { evictor = dbBooks.createEvictor(Freeze.EvictorPersistenceMode.SaveAfterMutatingOperation); } @@ -31,7 +31,7 @@ class LibraryCollocated extends Freeze.Application evictor = dbBooks.createEvictor(Freeze.EvictorPersistenceMode.SaveUponEviction); } int evictorSize = properties.getPropertyAsInt("Library.EvictorSize"); - if (evictorSize > 0) + if(evictorSize > 0) { evictor.setSize(evictorSize); } |