I have something like this:
public static final String path; static { path = loadProperties(\"config.conf\").getProperty(\"path\"); } public static void mai
A simpler approach is simply not to use the static initializer for this. Why not just make path non-final and load it in main?
path
main