Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Undeprecate the CS-Core stuff for now #4187

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@
* An old remnant of CS-CoreLib.
* This will be removed once we updated everything.
* Don't look at the code, it will be gone soon, don't worry.
*
* @deprecated Only used by the legacy {@link BlockStorage} system.
* Only used by the legacy {@link BlockStorage} system.
*/
@Deprecated
public class Config {

private final File file;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
* An old remnant of CS-CoreLib.
* This will be removed once we updated everything.
* Don't look at the code, it will be gone soon, don't worry.
*
*/
@Deprecated
public class ChestMenu {

private boolean clickable;
Expand Down Expand Up @@ -207,7 +205,6 @@ public ChestMenu addMenuCloseHandler(MenuCloseHandler handler) {
*
* @return The ChestMenu Instance
*/
@Deprecated
public ChestMenu build() {
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
* An old remnant of CS-CoreLib.
* This will be removed once we updated everything.
* Don't look at the code, it will be gone soon, don't worry.
*
*/
@Deprecated
public class ClickAction {

private boolean right;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,9 @@

/**
* An old {@link Listener} for CS-CoreLib
*
* @deprecated This is an old remnant of CS-CoreLib, the last bits of the past. They will be removed once everything is
* This is an old remnant of CS-CoreLib, the last bits of the past. They will be removed once everything is
* updated.
*
*/
@Deprecated
public class MenuListener implements Listener {

static final Map<UUID, ChestMenu> menus = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/**
* Old CS-CoreLib 1.X code.
*/
@java.lang.Deprecated
package me.mrCookieSlime.CSCoreLibPlugin;
1 change: 0 additions & 1 deletion src/main/java/me/mrCookieSlime/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
* Don't look too close at the code that lays here. It's horrible, believe me.
* Once we updated everything, all of these classes will be removed.
*/
@java.lang.Deprecated
package me.mrCookieSlime;
Loading