When I try to run the code, It compiles normally, but then prints out “java -classpath .:target/dependency/* Main” and sits there doing nothing. No matter how long I wait it will not not do anything. I do not have a code snippet as I don’t know which code is causing it. Maybe I need to move the class files into a folder or something?
@JosephBallin, I have not found the error yet, but I discovered the location. The error is in your NoteConverter constructor. I will tell you if I find the error and solution. And might I ask why you are using i = 12; instead of break;in your for loops?
@BananaPi, No error is actually thrown. It just doesn’t load properly. I tried commenting out multiple lines in Main.java, and found that the NoteConverter class was causing the issue.
The error was somewhere within the loop for creating Fretboard in NoteConverter.java. I decided to just delete them and try a new approach. I will update with results.
UPDATE: I fixed it, don’t know what the error was but I moved it to RiffBuilder.java and tried using nested loops. It’s running again now. thanks @LegoWizardCode for pointing out where the error was.