Cleanup Space are now converted into tabs.
This commit is contained in:
parent
fa3cf743f9
commit
6e30a54ead
|
@ -877,7 +877,6 @@ public class LINKED_LIST KEY_GENERIC_TYPE extends ABSTRACT_LIST KEY_GENERIC_TYPE
|
||||||
#if TYPE_OBJECT
|
#if TYPE_OBJECT
|
||||||
x.value = null;
|
x.value = null;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (prev == null) first = next;
|
if (prev == null) first = next;
|
||||||
else {
|
else {
|
||||||
prev.next = next;
|
prev.next = next;
|
||||||
|
|
|
@ -147,7 +147,7 @@ public interface LIST KEY_GENERIC_TYPE extends COLLECTION KEY_GENERIC_TYPE, List
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
/**
|
/**
|
||||||
* A function to fast add elements to the list
|
* A function to fast add elements to the list
|
||||||
* @param a the elements that should be added
|
* @param a the elements that should be added
|
||||||
* @throws IndexOutOfBoundsException if from is outside of the lists range
|
* @throws IndexOutOfBoundsException if from is outside of the lists range
|
||||||
|
|
Loading…
Reference in New Issue