I\'ve got a method that creates a String and another method that changes Strings
String
void create(){ String s; edit(s); System.out.printl
You declare local variable s in method create, so that you need to initialized it before you use it. Remember that java does not have default value for local variable. Init String s = "" or whatever value than your code will run normally.
s
create
String s = ""