Mercurial > 510Connectbot
diff src/ch/ethz/ssh2/SFTPv6FileAttributes.java @ 305:d2b303406d63 ganymed
remove extra override annotations that generate eclipse compiler errors
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 12:09:51 -0700 |
parents | 91a31873c42a |
children | 071eccdff8ea |
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/SFTPv6FileAttributes.java Tue Jul 29 20:28:01 2014 -0700 +++ b/src/ch/ethz/ssh2/SFTPv6FileAttributes.java Wed Jul 30 12:09:51 2014 -0700 @@ -115,7 +115,6 @@ * @return Returns true if permissions are available and they indicate * that this entry represents a directory. */ - @Override public boolean isDirectory() { return (type & AttribTypes.SSH_FILEXFER_TYPE_DIRECTORY) == AttribTypes.SSH_FILEXFER_TYPE_DIRECTORY; } @@ -126,7 +125,6 @@ * @return Returns true if permissions are available and they indicate * that this entry represents a regular file. */ - @Override public boolean isRegularFile() { return (type & AttribTypes.SSH_FILEXFER_TYPE_REGULAR) == AttribTypes.SSH_FILEXFER_TYPE_REGULAR; } @@ -137,7 +135,6 @@ * @return Returns true if permissions are available and they indicate * that this entry represents a symlink. */ - @Override public boolean isSymlink() { return (type & AttribTypes.SSH_FILEXFER_TYPE_SYMLINK) == AttribTypes.SSH_FILEXFER_TYPE_SYMLINK; } @@ -264,7 +261,6 @@ * * @return Encoded attributes */ - @Override public byte[] toBytes() { TypesWriter tw = new TypesWriter(); // The 'valid-attribute-flags' specifies which of the fields are present. Those fields