If i have a bunch of code that is just 1 big line is there any way to convert it to normal looking code, im using Intellij.
from this:
public class Test {public void methodName(){System.out.println("Example");}}
to this:
public class Test {
public void methodName(){
System.out.println("Example");
}
}