Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2012-02-14 22:32:27 +0000
committerkmoore2012-02-14 22:32:27 +0000
commitdadc5211a392f1ee8e1c7bdbb7ca0fed64be21e2 (patch)
treec49ccc692bb344bf503e4b3933599d673619bc6a /jpa/plugins/org.eclipse.jpt.jpa.core/src/org
parentcb0b997a82d0759d44228af9269f0af6d1d1234b (diff)
downloadwebtools.dali-dadc5211a392f1ee8e1c7bdbb7ca0fed64be21e2.tar.gz
webtools.dali-dadc5211a392f1ee8e1c7bdbb7ca0fed64be21e2.tar.xz
webtools.dali-dadc5211a392f1ee8e1c7bdbb7ca0fed64be21e2.zip
removed unused method, legacy from before ReadOnlyPersistentAttribute existed
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/context/orm/VirtualOrmPersistentAttribute.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/context/orm/VirtualOrmPersistentAttribute.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/context/orm/VirtualOrmPersistentAttribute.java
index fe5ac8ac60..3377282862 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/context/orm/VirtualOrmPersistentAttribute.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/internal/context/orm/VirtualOrmPersistentAttribute.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2011 Oracle. All rights reserved.
+ * Copyright (c) 2010, 2012 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
@@ -24,7 +24,6 @@ import org.eclipse.jpt.jpa.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.java.JavaPersistentType;
import org.eclipse.jpt.jpa.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmPersistentType;
-import org.eclipse.jpt.jpa.core.context.orm.OrmReadOnlyPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmTypeMapping;
import org.eclipse.jpt.jpa.core.internal.context.java.FieldAccessor;
import org.eclipse.jpt.jpa.core.internal.context.java.PropertyAccessor;
@@ -280,10 +279,6 @@ public class VirtualOrmPersistentAttribute
return true;
}
- public OrmReadOnlyPersistentAttribute convertToVirtual() {
- throw new UnsupportedOperationException();
- }
-
public OrmPersistentAttribute convertToSpecified() {
if (this.mapping.getKey() == null) {
throw new IllegalStateException("Use convertToSpecified(String) instead and specify a mapping type"); //$NON-NLS-1$

Back to the top