I might let you get away with:

public String readFileToStringUTF8(File f) {
   return readFileToString(f, "UTF8");
}

or

public String readFileToStringDefaultEncoding(File f) {
   return readFileToString(f, null);
}

Stephen


Henri Yandell wrote:
As it's highly irritating to use as a user, I wanted to confirm that
we were still -1 to having:

public String readFileToString(File f) {
   return readFileToString(f, null);
}

and the various other overlays?

It sucks to keep adding null all over the place.

Hen

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to