diff src/ch/ethz/ssh2/SFTPv3FileAttributes.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/SFTPv3FileAttributes.java	Tue Jul 29 20:28:01 2014 -0700
+++ b/src/ch/ethz/ssh2/SFTPv3FileAttributes.java	Wed Jul 30 12:09:51 2014 -0700
@@ -88,7 +88,6 @@
      * @return Returns true if permissions are available and they indicate
      * that this entry represents a directory.
      */
-    @Override
     public boolean isDirectory() {
         if(permissions == null) {
             return false;
@@ -102,7 +101,6 @@
      * @return Returns true if permissions are available and they indicate
      * that this entry represents a regular file.
      */
-    @Override
     public boolean isRegularFile() {
         if(permissions == null) {
             return false;
@@ -116,7 +114,6 @@
      * @return Returns true if permissions are available and they indicate
      * that this entry represents a symlink.
      */
-    @Override
     public boolean isSymlink() {
         if(permissions == null) {
             return false;
@@ -215,7 +212,6 @@
      *
      * @return Encoded attributes
      */
-    @Override
     public byte[] toBytes() {
         TypesWriter tw = new TypesWriter();
         int attrFlags = 0;