1
1
mirror of https://github.com/ahabhyde/miguelbridge synced 2025-01-10 06:24:20 +01:00

Moved test class to test package

This commit is contained in:
Ahab 2018-04-10 12:38:00 +02:00
parent f6ae8dcb8b
commit 5a7d9e3507

View File

@ -1,5 +1,6 @@
package com.em.miguelbridge.matrixbot;
package test;
import com.em.miguelbridge.matrixbot.MatrixBot;
import java.util.logging.Level;
import java.util.logging.Logger;
@ -7,7 +8,7 @@ import java.util.logging.Logger;
*
* @author Emanuele Magon
*/
public class prova {
public class MatrixTest {
public static void main(String[] args) {
String accessToken, roomAddress = "!mPkXwqjuGdhEVSopiG:maxwell.ydns.eu";
try {
@ -32,7 +33,7 @@ public class prova {
}
} catch (Exception ex) {
Logger.getLogger(prova.class.getName()).log(Level.SEVERE, null, ex);
Logger.getLogger(MatrixTest.class.getName()).log(Level.SEVERE, null, ex);
}
}
}