Skip to content

Commit

Permalink
Removed try catch block
Browse files Browse the repository at this point in the history
  • Loading branch information
Steppschuh committed Aug 14, 2019
1 parent 98bcab2 commit 0d87197
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,7 @@ public static AdvertisingPacket processAdvertisingPacket(String macAddress, Adve
beacon.addAdvertisingPacket(advertisingPacket);
//TODO move outside method
processClosestBeacon(beacon);
try {
instance.notifyBeaconUpdateListeners(beacon);
} catch (Exception e) {
e.printStackTrace();
}
instance.notifyBeaconUpdateListeners(beacon);
return advertisingPacket;
}

Expand Down

0 comments on commit 0d87197

Please sign in to comment.