From d4e6f6648d348f0f3a98f943d494d8dd3ced682e Mon Sep 17 00:00:00 2001 From: lanyuanxiaoyao Date: Wed, 25 Dec 2024 21:41:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=80=E5=8C=96=E5=8C=85=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../flowable/repository/{memory => }/MemoryFlowRepository.java | 3 +-- src/test/java/com/lanyuanxiaoyao/flowable/FlowServiceTest.java | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename src/main/java/com/lanyuanxiaoyao/flowable/repository/{memory => }/MemoryFlowRepository.java (87%) diff --git a/src/main/java/com/lanyuanxiaoyao/flowable/repository/memory/MemoryFlowRepository.java b/src/main/java/com/lanyuanxiaoyao/flowable/repository/MemoryFlowRepository.java similarity index 87% rename from src/main/java/com/lanyuanxiaoyao/flowable/repository/memory/MemoryFlowRepository.java rename to src/main/java/com/lanyuanxiaoyao/flowable/repository/MemoryFlowRepository.java index e8e9391..9757364 100644 --- a/src/main/java/com/lanyuanxiaoyao/flowable/repository/memory/MemoryFlowRepository.java +++ b/src/main/java/com/lanyuanxiaoyao/flowable/repository/MemoryFlowRepository.java @@ -1,7 +1,6 @@ -package com.lanyuanxiaoyao.flowable.repository.memory; +package com.lanyuanxiaoyao.flowable.repository; import com.lanyuanxiaoyao.flowable.model.Flow; -import com.lanyuanxiaoyao.flowable.repository.FlowRepository; import java.util.Map; import java.util.UUID; import java.util.concurrent.ConcurrentHashMap; diff --git a/src/test/java/com/lanyuanxiaoyao/flowable/FlowServiceTest.java b/src/test/java/com/lanyuanxiaoyao/flowable/FlowServiceTest.java index 4f70997..c3b4cdd 100644 --- a/src/test/java/com/lanyuanxiaoyao/flowable/FlowServiceTest.java +++ b/src/test/java/com/lanyuanxiaoyao/flowable/FlowServiceTest.java @@ -6,7 +6,7 @@ import com.lanyuanxiaoyao.flowable.node.LeaveRequestNode; import com.lanyuanxiaoyao.flowable.node.LeaveSystemCheckNode; import com.lanyuanxiaoyao.flowable.node.ManagerApprovalNode; import com.lanyuanxiaoyao.flowable.repository.FlowRepository; -import com.lanyuanxiaoyao.flowable.repository.memory.MemoryFlowRepository; +import com.lanyuanxiaoyao.flowable.repository.MemoryFlowRepository; import com.lanyuanxiaoyao.flowable.service.FlowService; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.DisplayName;