Example #1
0
 public static void startTime(String name) throws IOException {
   if (trace) {
     out("startTime %s", name);
   }
   Profile p = profiles.get(name);
   if (p == null) {
     p = new Profile(name);
     profiles.put(name, p);
   }
   p.startTime();
   p.count++;
 }