2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-03 07:35:08 +00:00

remove unneeded throws

This commit is contained in:
Nicolas Fella
2019-03-31 19:26:21 +02:00
parent 0510167c4e
commit 386a9f3f40

View File

@@ -196,7 +196,7 @@ public class AndroidSafSshFile implements SshFile {
} }
@Override @Override
public void truncate() throws IOException { public void truncate() {
if (documentInfo.length > 0) { if (documentInfo.length > 0) {
delete(); delete();
create(); create();
@@ -326,7 +326,7 @@ public class AndroidSafSshFile implements SshFile {
} }
@Override @Override
public Object getAttribute(Attribute attribute, boolean followLinks) throws IOException { public Object getAttribute(Attribute attribute, boolean followLinks) {
Object ret; Object ret;
switch (attribute) { switch (attribute) {
@@ -402,7 +402,7 @@ public class AndroidSafSshFile implements SshFile {
} }
@Override @Override
public void setAttribute(Attribute attribute, Object value) throws IOException { public void setAttribute(Attribute attribute, Object value) {
Log.d(TAG, "setAttribute()"); Log.d(TAG, "setAttribute()");
} }