HADOOP-9646: Inconsistent exception specifications in FileUtils#chmod

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1493241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Colin McCabe 2013-06-14 20:57:07 +00:00
parent 0d1a994fbb
commit 65b225c06f

View File

@ -800,7 +800,7 @@ public static int symLink(String target, String linkname) throws IOException{
* @throws InterruptedException
*/
public static int chmod(String filename, String perm
) throws IOException, InterruptedException {
) throws IOException {
return chmod(filename, perm, false);
}