When I query all the mixers on my Macintosh (MacPro 13inch; 10.13.1), all that shows up is 6 iterations of "Default Audio Device, version Unknown Version".
I am simply wondering why this is, and how I might be able to fix it. If it matters, I am compiling the code through NetBeans 8.2
Here's the method:
public static void displayMixers() {
Mixer.Info[] mixerInfo = AudioSystem.getMixerInfo(); //save info of all mixers on system to an array
System.out.println("Available mixers: ");
for (int i = 0; i < mixerInfo.length; i++) { //for loop that iterates over the array we just established
System.out.println(mixerInfo[0].toString()); //print description of mixer each time
}
}