()
| 1905 | } |
| 1906 | |
| 1907 | private boolean isTimedOut() { |
| 1908 | if (time != 0 && System.currentTimeMillis() >= time) { |
| 1909 | time = 0; |
| 1910 | dispose(); |
| 1911 | deregisterAnimatedInternal(this); |
| 1912 | return true; |
| 1913 | } |
| 1914 | return false; |
| 1915 | } |
| 1916 | |
| 1917 | /// Indicates that this is a menu preventing getCurrent() from ever returning this class |
| 1918 | @Override |
no test coverage detected