diff --git a/src/com/tofvesson/async/Async.java b/src/com/tofvesson/async/Async.java index f5273be..0e25302 100644 --- a/src/com/tofvesson/async/Async.java +++ b/src/com/tofvesson/async/Async.java @@ -233,4 +233,8 @@ public class Async { * @param millis Milliseconds to delay. */ public static void sleep(long millis){ sleep(millis, 0); } + + public static void iSleep(long millis, int micros){ try{ Thread.sleep(millis, micros); } catch(Exception ignored) {} } + + public static void iSleep(long millis){ iSleep(millis, 0); } } diff --git a/src/com/tofvesson/collections/ShiftingList.java b/src/com/tofvesson/collections/ShiftingList.java index 8712ff8..9a846ab 100644 --- a/src/com/tofvesson/collections/ShiftingList.java +++ b/src/com/tofvesson/collections/ShiftingList.java @@ -161,6 +161,7 @@ public class ShiftingList implements List { entries = new Object[1]; } + @Override public int indexOf(Object o){ for(int i = 0; i implements List { }else if(j+1==entries.length) return; // Found all populated entries } + /** + * Prepares entry array for population of new values. + * @param accountFor New values to account for (in pop variable hasn't been updated). + */ protected void preparePopulate(int accountFor){ if(accountFor+pop>entries.length) adaptLoad(accountFor); // If new elements exceed limit, adapt load if(accountFor>entries.length) return; // No need to delete elements if new values exceed limit @@ -220,17 +225,17 @@ public class ShiftingList implements List { public E set(int index, E element) { if(index > pop) return null; E e = get(index); - entries[index] = element; + entries[index] = element==null?empty:element; return e; } @Override public void add(int index, E element) { - if(index>=entries.length || index<0 || contains(element)) return; + if(index<0 || contains(element)) return; Object o = element==null?empty:element; pop = pop==maxSize?pop:pop+1; - if(pop==entries.length) adaptLoad(); - if(index==entries.length-1){ + adaptLoad(); + if((index>=entries.length?index=Math.min(entries.length-1, pop):index)==entries.length-1){ entries[index] = o; return; }