From ac350c2ff20eeb7bf0659e870cd46ff9b4cef8ad Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Mon, 2 Aug 2021 18:00:53 +0200 Subject: [PATCH] [Major] Deleted deprecated ReservationExection --- .../execution/policy/ReservationExection.java | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 li.strolch.service/src/main/java/li/strolch/execution/policy/ReservationExection.java diff --git a/li.strolch.service/src/main/java/li/strolch/execution/policy/ReservationExection.java b/li.strolch.service/src/main/java/li/strolch/execution/policy/ReservationExection.java deleted file mode 100644 index dc4f089c4..000000000 --- a/li.strolch.service/src/main/java/li/strolch/execution/policy/ReservationExection.java +++ /dev/null @@ -1,13 +0,0 @@ -package li.strolch.execution.policy; - -import li.strolch.persistence.api.StrolchTransaction; - -/** - * @deprecated use {@link ReservationExecution} instead - */ -@Deprecated -public class ReservationExection extends ReservationExecution { - public ReservationExection(StrolchTransaction tx) { - super(tx); - } -}