Use gson instead of internal serialization method

This commit is contained in:
Luck
2016-06-22 12:51:37 +01:00
Unverified
parent 484bc44288
commit f6d8fb5286
6 changed files with 47 additions and 59 deletions
@@ -1,5 +1,6 @@
package me.lucko.luckperms;
import com.google.gson.Gson;
import me.lucko.luckperms.data.Datastore;
import me.lucko.luckperms.groups.GroupManager;
import me.lucko.luckperms.users.UserManager;
@@ -74,4 +75,6 @@ public interface LuckPermsPlugin {
* @param r the task to run
*/
void doSync(Runnable r);
Gson getGson();
}