Archived
0

Обновление API: простой вывод в консоль

This commit is contained in:
2016-08-15 22:46:18 +03:00
parent edae199b00
commit a8b2633f1c
2 changed files with 5 additions and 1 deletions

View File

@@ -19,7 +19,7 @@
<groupId>asys</groupId> <groupId>asys</groupId>
<artifactId>api</artifactId> <artifactId>api</artifactId>
<version>0.6</version> <version>0.7</version>
<packaging>bundle</packaging> <packaging>bundle</packaging>
<dependencies> <dependencies>

View File

@@ -35,6 +35,10 @@ public class ASysUtils {
} }
} }
public static void Log(String format, Object... objects) {
System.out.printf(format+"\n", objects);
}
private static Dictionary<String, Object> getCommandListByAnnotationMethods(String scope, Class<?> clazz) { private static Dictionary<String, Object> getCommandListByAnnotationMethods(String scope, Class<?> clazz) {
List<String> listCommand = new Vector<>(); List<String> listCommand = new Vector<>();