2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 05:37:43 +00:00

Mark ignored Exceptions as such

This commit is contained in:
Nicolas Fella 2019-03-30 17:31:56 +01:00
parent 6e1fe3edbd
commit 3022e3d835
3 changed files with 14 additions and 14 deletions

View File

@ -144,7 +144,7 @@ public class BluetoothLink extends BaseLink {
continueAccepting = false;
try {
socket.close();
} catch (IOException e) {
} catch (IOException ignored) {
}
linkProvider.disconnectedLink(this, getDeviceId(), socket);
}

View File

@ -216,10 +216,10 @@ public class LanLink extends BaseLink {
outputStream.flush();
Log.i("KDE/LanLink", "Finished sending payload ("+progress+" bytes written)");
} finally {
try { server.close(); } catch (Exception e) { }
try { payloadSocket.close(); } catch (Exception e) { }
try { server.close(); } catch (Exception ignored) { }
try { payloadSocket.close(); } catch (Exception ignored) { }
np.getPayload().close();
try { outputStream.close(); } catch (Exception e) { }
try { outputStream.close(); } catch (Exception ignored) { }
}
}

View File

@ -91,7 +91,7 @@ public class NetworkPacket {
if (value == null) return;
try {
mBody.put(key, value);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
@ -114,7 +114,7 @@ public class NetworkPacket {
public void set(String key, int value) {
try {
mBody.put(key, value);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
@ -129,7 +129,7 @@ public class NetworkPacket {
public void set(String key, boolean value) {
try {
mBody.put(key, value);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
@ -144,7 +144,7 @@ public class NetworkPacket {
public void set(String key, double value) {
try {
mBody.put(key, value);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
@ -155,7 +155,7 @@ public class NetworkPacket {
public void set(String key, JSONArray value) {
try {
mBody.put(key, value);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
@ -166,7 +166,7 @@ public class NetworkPacket {
public void set(String key, JSONObject value) {
try {
mBody.put(key, value);
} catch (JSONException e) {
} catch (JSONException ignored) {
}
}
@ -179,7 +179,7 @@ public class NetworkPacket {
try {
String str = jsonArray.getString(i);
list.add(str);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
return list;
@ -197,7 +197,7 @@ public class NetworkPacket {
jsonArray.put(str);
}
mBody.put(key, jsonArray);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
@ -210,7 +210,7 @@ public class NetworkPacket {
try {
String str = jsonArray.getString(i);
list.add(str);
} catch (Exception e) {
} catch (Exception ignored) {
}
}
return list;
@ -228,7 +228,7 @@ public class NetworkPacket {
jsonArray.put(str);
}
mBody.put(key, jsonArray);
} catch (Exception e) {
} catch (Exception ignored) {
}
}