2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-31 14:15:14 +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
public void truncate() throws IOException {
public void truncate() {
if (documentInfo.length > 0) {
delete();
create();
@@ -326,7 +326,7 @@ public class AndroidSafSshFile implements SshFile {
}
@Override
public Object getAttribute(Attribute attribute, boolean followLinks) throws IOException {
public Object getAttribute(Attribute attribute, boolean followLinks) {
Object ret;
switch (attribute) {
@@ -402,7 +402,7 @@ public class AndroidSafSshFile implements SshFile {
}
@Override
public void setAttribute(Attribute attribute, Object value) throws IOException {
public void setAttribute(Attribute attribute, Object value) {
Log.d(TAG, "setAttribute()");
}