Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortle2008-07-28 15:00:48 +0000
committertle2008-07-28 15:00:48 +0000
commit5b6cdb25860942da19495287348a4f8989f76e3e (patch)
tree67ae177615f2180eb0d327dbf89b8a9c1bceaaef
parent09f5edc90b4729cb25f9232544425a366a29f803 (diff)
downloadwebtools.dali-5b6cdb25860942da19495287348a4f8989f76e3e.tar.gz
webtools.dali-5b6cdb25860942da19495287348a4f8989f76e3e.tar.xz
webtools.dali-5b6cdb25860942da19495287348a4f8989f76e3e.zip
232403 - EclipseLink persistence.xml editor - edit cache size default does not update editor
-rw-r--r--jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/caching/DefaultCacheSizeComposite.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/caching/DefaultCacheSizeComposite.java b/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/caching/DefaultCacheSizeComposite.java
index 50387934ff..e0df6d77cc 100644
--- a/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/caching/DefaultCacheSizeComposite.java
+++ b/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/caching/DefaultCacheSizeComposite.java
@@ -46,7 +46,7 @@ public class DefaultCacheSizeComposite extends AbstractPane<Caching>
}
private WritablePropertyValueModel<Integer> buildCacheSizeHolder() {
- return new PropertyAspectAdapter<Caching, Integer>(getSubjectHolder(), Caching.CACHE_SIZE_PROPERTY) {
+ return new PropertyAspectAdapter<Caching, Integer>(getSubjectHolder(), Caching.CACHE_SIZE_DEFAULT_PROPERTY) {
@Override
protected Integer buildValue_() {
Integer value = subject.getCacheSizeDefault();

Back to the top