Reformat whole codebase using Android Studio

This commit is contained in:
Manuel Fuhr 2022-07-11 06:30:17 +02:00
parent d5322667d5
commit c15913c1ab
161 changed files with 15124 additions and 18537 deletions

View file

@ -1,43 +1,36 @@
package btools.util;
/**
* dynamic list of primitive longs
*
* @author ab
*/
public class LongList
{
private long[] a;
private int size;
public LongList( int capacity )
{
a = capacity < 4 ? new long[4] : new long[capacity];
}
public void add( long value )
{
if ( size == a.length )
{
long[] aa = new long[2*size];
System.arraycopy( a, 0, aa, 0, size );
a = aa;
}
a[size++] = value;
}
public long get( int idx )
{
if ( idx >= size )
{
throw new IndexOutOfBoundsException( "list size=" + size + " idx=" + idx );
}
return a[idx];
}
public int size()
{
return size;
}
}
package btools.util;
/**
* dynamic list of primitive longs
*
* @author ab
*/
public class LongList {
private long[] a;
private int size;
public LongList(int capacity) {
a = capacity < 4 ? new long[4] : new long[capacity];
}
public void add(long value) {
if (size == a.length) {
long[] aa = new long[2 * size];
System.arraycopy(a, 0, aa, 0, size);
a = aa;
}
a[size++] = value;
}
public long get(int idx) {
if (idx >= size) {
throw new IndexOutOfBoundsException("list size=" + size + " idx=" + idx);
}
return a[idx];
}
public int size() {
return size;
}
}