X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fibex%2Fnestedvm%2Futil%2FSort.java;fp=src%2Forg%2Fibex%2Fnestedvm%2Futil%2FSort.java;h=bf5c8dd8efbb9ff132cbeaa8ff7d83478a7d2ed1;hb=a9b51184aec8670b8627a8be6e6be88014264d3b;hp=0000000000000000000000000000000000000000;hpb=4cc48f20c2927ad6d88f4d54e10b5fe46fcef2df;p=nestedvm.git diff --git a/src/org/ibex/nestedvm/util/Sort.java b/src/org/ibex/nestedvm/util/Sort.java new file mode 100644 index 0000000..bf5c8dd --- /dev/null +++ b/src/org/ibex/nestedvm/util/Sort.java @@ -0,0 +1,13 @@ +package org.ibex.nestedvm.util; + +public final class Sort { + private Sort() { } + + public interface Sortable { + public int compareTo(Object o); + } + + public static void sort(Sortable[] a) { + throw new Error("FIXME"); + } +}