+ Added benchmark find command and internal structure

This commit is contained in:
Matthew Cech
2019-05-05 15:56:55 -07:00
parent 645e632dcb
commit 40d4812e2a
13 changed files with 185 additions and 39 deletions
-2
View File
@@ -33,7 +33,6 @@ public class Main extends ListenerAdapter
private static Stats stats;
private static RPManager rpManager;
private static PluginManager pluginManager;
private static BenchmarkManager benchmarkManager;
// Main test location
public static void main(String[] args) throws InterruptedException, LoginException, Exception
@@ -46,7 +45,6 @@ public class Main extends ListenerAdapter
stats = ObjectBuilderFactory.ConstructStats(commandManager);
rpManager = ObjectBuilderFactory.ConstructRPManager();
pluginManager = ObjectBuilderFactory.ConstructPluginManager();
benchmarkManager = ObjectBuilderFactory.ConstructBenchmarkManager();
// Bot startup
kitty = new JDABuilder(AccountType.BOT).setToken(Ref.TestToken).buildBlocking();