From 6b040183b6c1a73fb1db279de526a302ebdaf91f Mon Sep 17 00:00:00 2001 From: Kiran Hart Date: Fri, 27 Oct 2023 10:15:32 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=8E=EF=B8=8F=20move=20storeable=20into?= =?UTF-8?q?=20sync=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Took 40 seconds --- .../auctionhouse/api/{interfaces => sync}/Storeable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/main/java/ca/tweetzy/auctionhouse/api/{interfaces => sync}/Storeable.java (90%) diff --git a/src/main/java/ca/tweetzy/auctionhouse/api/interfaces/Storeable.java b/src/main/java/ca/tweetzy/auctionhouse/api/sync/Storeable.java similarity index 90% rename from src/main/java/ca/tweetzy/auctionhouse/api/interfaces/Storeable.java rename to src/main/java/ca/tweetzy/auctionhouse/api/sync/Storeable.java index a5c3f00..ccb4029 100644 --- a/src/main/java/ca/tweetzy/auctionhouse/api/interfaces/Storeable.java +++ b/src/main/java/ca/tweetzy/auctionhouse/api/sync/Storeable.java @@ -1,6 +1,6 @@ /* * Auction House - * Copyright 2018-2022 Kiran Hart + * Copyright 2018-2023 Kiran Hart * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -package ca.tweetzy.auctionhouse.api.interfaces; +package ca.tweetzy.auctionhouse.api.sync; import java.util.function.Consumer;