Skip to content

Instantly share code, notes, and snippets.

@brianherman
Created September 23, 2013 01:10
Show Gist options
  • Save brianherman/6665447 to your computer and use it in GitHub Desktop.
Save brianherman/6665447 to your computer and use it in GitHub Desktop.
private static void printInstrumentation(Properties properties) {
Iterator<Object> keys = properties.keySet().iterator();
while (keys.hasNext()) {
String key = (String) keys.next();
String property = properties.getProperty(key);
System.out.println(key + " : " + property);
}
}
private static void printActions(List<Action> actions) {
for (int i = 0; i < actions.size(); i++) {
String action = actions.get(i).toString();
System.out.println(action);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment