From 586c3ed59237dfda7eb94fa990a9be786163e46d Mon Sep 17 00:00:00 2001 From: Rasmus Neikes Date: Fri, 15 May 2026 21:09:19 +0200 Subject: [PATCH] Remove unused imports from SubgraphLoader Co-Authored-By: Claude Sonnet 4.6 --- .../java/com/binarygolem/clotho/mapping/SubgraphLoader.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/clotho-core/src/main/java/com/binarygolem/clotho/mapping/SubgraphLoader.java b/clotho-core/src/main/java/com/binarygolem/clotho/mapping/SubgraphLoader.java index 116fce9..a40c561 100644 --- a/clotho-core/src/main/java/com/binarygolem/clotho/mapping/SubgraphLoader.java +++ b/clotho-core/src/main/java/com/binarygolem/clotho/mapping/SubgraphLoader.java @@ -1,14 +1,12 @@ package com.binarygolem.clotho.mapping; import com.binarygolem.clotho.annotation.Direction; -import com.binarygolem.clotho.annotation.Include; import com.binarygolem.clotho.annotation.InVertex; import com.binarygolem.clotho.annotation.OutVertex; import com.binarygolem.clotho.annotation.Via; import com.binarygolem.clotho.exception.ClothoConfigurationException; import com.binarygolem.clotho.model.ARID; import com.binarygolem.clotho.model.ClothoEdge; -import com.binarygolem.clotho.model.ClothoEntity; import com.binarygolem.clotho.model.ClothoVertex; import com.binarygolem.clotho.model.EntityState; import com.binarygolem.clotho.model.TraversalDirection;