Skip to content

Commit

Permalink
"""fix""": don't put database related classes in core repackaged modu…
Browse files Browse the repository at this point in the history
…les to ensure "current" database impls continue to work
  • Loading branch information
onebeastchris committed Nov 27, 2024
1 parent 00e0d84 commit 07b516f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Floodgate
*/

package org.geysermc.floodgate.core.database.config;
package org.geysermc.floodgate.database.config;

/**
* Base class for every database related configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @link https://github.com/GeyserMC/Floodgate
*/

package org.geysermc.floodgate.core.database.config;
package org.geysermc.floodgate.database.config;

import com.google.gson.JsonObject;
import com.google.inject.Inject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
import org.geysermc.floodgate.api.link.PlayerLink;
import org.geysermc.floodgate.api.logger.FloodgateLogger;
import org.geysermc.floodgate.core.config.FloodgateConfig;
import org.geysermc.floodgate.core.database.config.DatabaseConfig;
import org.geysermc.floodgate.core.database.config.DatabaseConfigLoader;
import org.geysermc.floodgate.database.config.DatabaseConfig;
import org.geysermc.floodgate.database.config.DatabaseConfigLoader;
import org.geysermc.floodgate.core.event.lifecycle.ShutdownEvent;
import org.geysermc.floodgate.core.util.InjectorHolder;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
package org.geysermc.floodgate.database.config;

import lombok.Getter;
import org.geysermc.floodgate.core.database.config.DatabaseConfig;

@Getter
public class MongoConfig implements DatabaseConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
package org.geysermc.floodgate.database.config;

import lombok.Getter;
import org.geysermc.floodgate.core.database.config.DatabaseConfig;

@Getter
public class MysqlConfig implements DatabaseConfig {
Expand Down

0 comments on commit 07b516f

Please sign in to comment.