Sonderzeichen GitHub (Eclipse encoding)

Hab etwas auf github gepushed:

    public static boolean isSorted(int[] array) {
        for (int i = 0; i < array.length; i++) {
            for (int j = i; j < array.length; j++) {
                assert array[i] > array[j] : "array[i] gr��er als array[j]";
            }
        }
        return true;
    }

Jetzt stehen da überall komische Zeichen. :frowning: Woran liegt das?