Fix infinity deferred element unfolding in J2K

#KT-13146 fixed
This commit is contained in:
Simon Ogorodnik
2017-05-22 20:58:58 +03:00
parent 4bb1130f3f
commit f8914013ef
6 changed files with 102 additions and 33 deletions
+15
View File
@@ -15,3 +15,18 @@ public class Test2 {
}
};
}
public class Handler {
public void postDelayed(Runnable r, long time) {}
}
public class Test3 {
private Handler handler = new Handler();
private Runnable someRunnable = new Runnable() {
@Override
public void run() {
handler.postDelayed(someRunnable, 1000);
}
};
}