From fca13557dfc0b83c5e991023cebcfeb94cce08ef Mon Sep 17 00:00:00 2001
From: Redkale <8730487+redkale@users.noreply.github.com>
Date: Mon, 16 Sep 2019 16:35:41 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=B8=8D=E5=85=BC=E5=AE=B9=E3=80=91?=
=?UTF-8?q?=E5=88=A0=E6=8E=89javax.persistence.GeneratedValue=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/javax/persistence/GeneratedValue.java | 63 -------------------
src/org/redkale/source/DataCallAttribute.java | 1 -
src/org/redkale/source/DataJdbcSource.java | 19 +-----
src/org/redkale/source/DataSqlSource.java | 10 ---
src/org/redkale/source/EntityInfo.java | 42 +------------
5 files changed, 4 insertions(+), 131 deletions(-)
delete mode 100644 src/javax/persistence/GeneratedValue.java
diff --git a/src/javax/persistence/GeneratedValue.java b/src/javax/persistence/GeneratedValue.java
deleted file mode 100644
index 56056e790..000000000
--- a/src/javax/persistence/GeneratedValue.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/** *****************************************************************************
- * Copyright (c) 2008 - 2013 Oracle Corporation. All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
- * which accompanies this distribution.
- * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
- * and the Eclipse Distribution License is available at
- * http://www.eclipse.org/org/documents/edl-v10.php.
- *
- * Contributors:
- * Linda DeMichiel - Java Persistence 2.1
- * Linda DeMichiel - Java Persistence 2.0
- *
- ***************************************************************************** */
-package javax.persistence;
-
-import java.lang.annotation.Target;
-import java.lang.annotation.Retention;
-import static java.lang.annotation.ElementType.FIELD;
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
-/**
- * Provides for the specification of generation strategies for the
- * values of primary keys.
- *
- *
- * The GeneratedValue annotation
- * may be applied to a primary key property or field of an entity or
- * mapped superclass in conjunction with the {@link Id} annotation.
- * The use of the GeneratedValue annotation is only
- * required to be supported for simple primary keys. Use of the
- * GeneratedValue annotation is not supported for derived
- * primary keys.
- *
- *