mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-29 21:27:40 +00:00
Remove unnecessary logging
This commit is contained in:
parent
d163a57af6
commit
d1c0a9763d
@ -32,6 +32,8 @@ import android.provider.DocumentsContract;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import org.apache.sshd.common.file.SshFile;
|
||||
import org.kde.kdeconnect.Helpers.FilesHelper;
|
||||
|
||||
@ -49,8 +51,6 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
@TargetApi(21)
|
||||
public class AndroidSafSshFile implements SshFile {
|
||||
private static final String TAG = AndroidSafSshFile.class.getSimpleName();
|
||||
@ -398,13 +398,10 @@ public class AndroidSafSshFile implements SshFile {
|
||||
@Override
|
||||
public void setAttributes(Map<Attribute, Object> attributes) {
|
||||
//TODO: Using Java 7 NIO it should be possible to implement setting a number of attributes but does SaF allow that?
|
||||
Log.d(TAG, "setAttributes()");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setAttribute(Attribute attribute, Object value) {
|
||||
Log.d(TAG, "setAttribute()");
|
||||
}
|
||||
public void setAttribute(Attribute attribute, Object value) {}
|
||||
|
||||
@Override
|
||||
public String readSymbolicLink() throws IOException {
|
||||
|
Loading…
x
Reference in New Issue
Block a user