Hey all!
I need some help, I'm trying to make my code a little bit more clean.
Instead of having to do:
public static String test = "";
public static String test1 = "";
public static String test2 = "";
Is there something like, uhhh... this I can do?
public static String {
test = "";
test1 = "";
test2 = "";
}
I need some help, I'm trying to make my code a little bit more clean.
Instead of having to do:
public static String test = "";
public static String test1 = "";
public static String test2 = "";
Is there something like, uhhh... this I can do?
public static String {
test = "";
test1 = "";
test2 = "";
}
