BubbleSort

Galera boa tarde, eu estou estudando bubblesort em java, e eu tô testando um programa aqui. Porém, não consigo imprimir o vetor que foi ajustado, eu estou imprimindo sempre o que está desarrumado.
Poderiam me ajudar?

Code abaixo:
package teste_bbsort;

import java.util.Random;
import java.util.concurrent.TimeUnit;

public class Teste_BBSort {

public static void main(String[] args) {
    int v[] = new int[]{25, 57, 48, 37, 12, 92, 86, 33};
    for (int i = 0; i < v.length; i++) {
        System.out.println("Posição: "+ (i+1) + " = " + v[i]);
    }

    System.out.println("=====================================");
    
    embaralha(v);

    int[] vetorEmbaralhado = v.clone();
    long tempoInicial = System.nanoTime();
    //TODO Chamada para o método de ordenação
    long tempoFinal = System.nanoTime();
    System.out.println("Bubble iterativo: " + (tempoFinal - tempoInicial) + 
    "ns" + " - " + TimeUnit.MILLISECONDS.convert((tempoFinal - tempoInicial)
            , TimeUnit.NANOSECONDS) + "ms");
}

void bubbleSort(int[] vetor) {
    for (int i = vetor.length - 1; i >= 0; i--) {
        for (int j = 0; j < i; j++) {
            if (vetor[j] > vetor[j + 1]) {
                swap(vetor, j, j + 1);
            }
        }
    }
}

private static void embaralha(int[] embaralhado) {
    Random random = new Random();
    int elementosRestantes = embaralhado.length;
    while (elementosRestantes > 0) {
        int k = random.nextInt(elementosRestantes);

        int temp = embaralhado[k];
        embaralhado[k] = embaralhado[elementosRestantes - 1];
        embaralhado[elementosRestantes - 1] = temp;

        elementosRestantes--;
    }
}

void swap(int[] vetor, int x, int y) {
    int temp = vetor[x];
    vetor[x] = vetor[y];
    vetor[y] = temp;
}

}

Faltou completar o TODO e imprimir o vetor:

bubbleSort(vetorEmbaralhado);
System.out.println(Arrays.toString(vetorEmbaralhado));

Também precisa corrigir os métodos, faltou o static

static void bubbleSort(int[] vetor) {
// e
static void swap(int[] vetor, int x, int y) {

Onde está:

    int temp = embaralhado[k];
    embaralhado[k] = embaralhado[elementosRestantes - 1];
    embaralhado[elementosRestantes - 1] = temp;

    elementosRestantes--;

recomendo substituir por:

elementosRestantes--;
swap(embaralhado, elementosRestantes, k);

Obrigado pela ajuda.