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:
@@ -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()");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user