Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Vosburgh2012-09-17 20:06:35 +0000
committerBrian Vosburgh2012-09-17 20:06:35 +0000
commiteff21e0721c2e920413d231b28357ecd4e1d6c06 (patch)
tree3ebc6be2b377bf2421bbfdecedea8503e3542bd7
parent0ad90a3d2f5291a72a2b84275c3e757308244cc8 (diff)
downloadwebtools.dali-eff21e0721c2e920413d231b28357ecd4e1d6c06.tar.gz
webtools.dali-eff21e0721c2e920413d231b28357ecd4e1d6c06.tar.xz
webtools.dali-eff21e0721c2e920413d231b28357ecd4e1d6c06.zip
rework type mapping validation - fix bad commit
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/EclipseLinkDynamicTypeMappingValidator.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/EclipseLinkDynamicTypeMappingValidator.java b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/EclipseLinkDynamicTypeMappingValidator.java
deleted file mode 100644
index db4da9a1b0..0000000000
--- a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.core/src/org/eclipse/jpt/jpa/eclipselink/core/internal/context/EclipseLinkDynamicTypeMappingValidator.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 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
- *
- * Contributors:
- * Oracle - initial API and implementation
- *******************************************************************************/
-package org.eclipse.jpt.jpa.eclipselink.core.internal.context;
-
-import java.util.List;
-import org.eclipse.jpt.jpa.core.context.TypeMapping;
-import org.eclipse.wst.validation.internal.provisional.core.IMessage;
-
-public class EclipseLinkDynamicTypeMappingValidator
- extends AbstractEclipseLinkTypeMappingValidator<TypeMapping>
-{
- public EclipseLinkDynamicTypeMappingValidator(TypeMapping typeMapping) {
- super(typeMapping, null);
- }
-
- @Override
- protected void validateType(List<IMessage> messages) {
- //no validation for a dynamic type
- }
-}

Back to the top