HADOOP-9646. Inconsistent exception specifications in FileUtils#chmod (Colin Patrick McCabe)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1493242 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Colin McCabe 2013-06-14 20:59:32 +00:00
parent 043d5fc97d
commit 905f7ff12d
2 changed files with 4 additions and 1 deletions

View File

@ -44,6 +44,9 @@ Release 2.1.0-beta - UNRELEASED
HADOOP-9630. [RPC v9] Remove IpcSerializationType. (Junping Du via llu)
HADOOP-9646. Inconsistent exception specifications in FileUtils#chmod
(Colin Patrick McCabe)
NEW FEATURES
HADOOP-9283. Add support for running the Hadoop client on AIX. (atm)

View File

@ -728,7 +728,7 @@ public class FileUtil {
* @throws InterruptedException
*/
public static int chmod(String filename, String perm
) throws IOException, InterruptedException {
) throws IOException {
return chmod(filename, perm, false);
}