Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KDE Connect Android
Commits
3022e3d8
Commit
3022e3d8
authored
Mar 30, 2019
by
Nicolas Fella
Browse files
Mark ignored Exceptions as such
parent
6e1fe3ed
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/org/kde/kdeconnect/Backends/BluetoothBackend/BluetoothLink.java
View file @
3022e3d8
...
...
@@ -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
);
}
...
...
src/org/kde/kdeconnect/Backends/LanBackend/LanLink.java
View file @
3022e3d8
...
...
@@ -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
)
{
}
}
}
...
...
src/org/kde/kdeconnect/NetworkPacket.java
View file @
3022e3d8
...
...
@@ -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
)
{
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment