Skip to content

Commit

Permalink
🔖 Updated copyright & fixed MySQL bug
Browse files Browse the repository at this point in the history
Signed-off-by: Luuuuuis <[email protected]>
  • Loading branch information
Luuuuuis committed Apr 24, 2021
1 parent 8fcb489 commit cf93a82
Show file tree
Hide file tree
Showing 22 changed files with 62 additions and 62 deletions.
8 changes: 4 additions & 4 deletions Website/mc-api.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Developed by Luuuuuis on 09.05.20, 20:35.
* Last modified 09.05.20, 18:39.
* Copyright (c) 2020.
/*
* Developed by Luuuuuis.
* Last modified 24.04.21, 12:53.
* Copyright (c) 2021.
*/

/**
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Developed by Luuuuuis on 23.04.21, 23:31.
~ Last modified 23.04.21, 15:43.
~ Copyright (c) 2020.
~ Developed by Luuuuuis.
~ Last modified 24.04.21, 12:53.
~ Copyright (c) 2021.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0"
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/BetaKey.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 21:50.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 09.05.20, 20:35.
* Last modified 09.05.20, 19:31.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 09.05.20, 20:35.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.bungee.commands;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/luuuuuis/betakey/bungee/init.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2020.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.bungee;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/bungee/listener/Login.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 15:11.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.bungee.listener;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/bungee/misc/Metrics.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 16:21.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.bungee.misc;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/database/DBManager.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 15:05.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database;
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/de/luuuuuis/betakey/database/mysql/MySQL.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.06.20, 14:09.
* Last modified 23.06.20, 13:46.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.06.20, 14:09.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database.mysql;
Expand All @@ -24,7 +24,7 @@ public void init() {
HashMap<String, Object> getMySQLCredentials = Config.getInstance().getMySQLCredentials();

String url = "jdbc:mysql://" + getMySQLCredentials.get("Host").toString() + ":" + ((Double) getMySQLCredentials.get("Port")).intValue() + "/"
+ getMySQLCredentials.get("database").toString() + "?autoReconnect=true&useUnicode=yes&amp;allowMultiQueries=true";
+ getMySQLCredentials.get("database").toString() + "?autoReconnect=true&useUnicode=yes&allowMultiQueries=true";

betaKey.getDbManager().connect(getMySQLCredentials, url);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 16:26.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database.querys;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2020.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database.querys;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/database/querys/Key.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 09.05.20, 20:35.
* Last modified 09.05.20, 19:52.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 09.05.20, 20:35.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database.querys;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2020.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database.querys;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/database/sqlite/SQLite.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 21:24.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.database.sqlite;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/misc/Config.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 16:58.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.misc;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/luuuuuis/betakey/misc/IPlugin.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2020.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.misc;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/luuuuuis/betakey/misc/MojangUUIDResolve.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2020.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.misc;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/misc/Updater.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 21:45.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.misc;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 15:54.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.spigot.commands;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/spigot/init.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Last modified 23.04.21, 21:39.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.spigot;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/de/luuuuuis/betakey/spigot/listener/Login.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 09.05.20, 20:35.
* Last modified 09.05.20, 19:32.
* Copyright (c) 2020.
* Developed by Luuuuuis.
* Last modified 09.05.20, 20:35.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.spigot.listener;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/luuuuuis/betakey/spigot/misc/Metrics.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Developed by Luuuuuis on 23.04.21, 23:31.
* Developed by Luuuuuis.
* Last modified 23.04.21, 23:31.
* Copyright (c) 2020.
* Copyright (c) 2021.
*/

package de.luuuuuis.betakey.spigot.misc;
Expand Down

0 comments on commit cf93a82

Please sign in to comment.