Skip to content

Commit 6040c85

Browse files
committed
Fix Javadoc warning - @param argument "file" is not a parameter name.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@491361 13f79535-47bb-0310-9956-ffa450edef68
1 parent 6ca93e4 commit 6040c85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/io/FileUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -973,8 +973,8 @@ public static String readFileToString(File file, String encoding) throws IOExcep
973973
* @throws IOException in case of an I/O error
974974
* @since Commons IO 1.3
975975
*/
976-
public String readFileToString(File f) throws IOException {
977-
return readFileToString(f, null);
976+
public String readFileToString(File file) throws IOException {
977+
return readFileToString(file, null);
978978
}
979979

980980
/**

0 commit comments

Comments
 (0)