From d2fe3e8aea6c3020776cad4e6e860da77c6f0f5e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Nov 2025 16:40:57 +0000 Subject: [PATCH 1/2] Initial plan From fe3b3d48016c209732a8210689b0d97987450d5d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 25 Nov 2025 16:43:45 +0000 Subject: [PATCH 2/2] Fix copyright header placement in IndexMetadata.java Co-authored-by: lvca <312606+lvca@users.noreply.github.com> --- .../java/com/arcadedb/schema/IndexMetadata.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/engine/src/main/java/com/arcadedb/schema/IndexMetadata.java b/engine/src/main/java/com/arcadedb/schema/IndexMetadata.java index b5668b9db8..468884926a 100644 --- a/engine/src/main/java/com/arcadedb/schema/IndexMetadata.java +++ b/engine/src/main/java/com/arcadedb/schema/IndexMetadata.java @@ -1,9 +1,3 @@ -package com.arcadedb.schema; - -import com.arcadedb.serializer.json.JSONObject; - -import java.util.*; - /* * Copyright © 2021-present Arcade Data Ltd (info@arcadedata.com) * @@ -18,7 +12,16 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. + * + * SPDX-FileCopyrightText: 2021-present Arcade Data Ltd (info@arcadedata.com) + * SPDX-License-Identifier: Apache-2.0 */ +package com.arcadedb.schema; + +import com.arcadedb.serializer.json.JSONObject; + +import java.util.*; + public class IndexMetadata { private String typeName; private List propertyNames;