Ejemplo n.º 1
0
 protected void a(ArrayList<sz> paramArrayList) {
   boolean bool = DialogToastListActivity.f;
   Iterator localIterator = paramArrayList.iterator();
   do {
     if (!localIterator.hasNext()) break;
     App.f((sz) localIterator.next());
   } while (!bool);
 }
Ejemplo n.º 2
0
  public static void main(String[] args) {

    App app1 = new App();
    App app2 = new App();
    Thread thread1 = new Thread(() -> app1.f());
    Thread thread2 = new Thread(() -> app2.g());

    /*App app = new App();
    Thread thread1 = new Thread(() -> app.f());
    Thread thread2 = new Thread(() -> app.g());*/

    thread1.start();
    thread2.start();
  }