1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2025-07-25 10:55:49 +00:00

Code style fixes

This commit is contained in:
Loic Blot 2017-10-30 08:37:08 +01:00
parent 8d0ba298ed
commit 8e15e18b09
No known key found for this signature in database
GPG Key ID: EFAA458E8C153987

View File

@ -68,7 +68,7 @@ public interface ASyncSMSRecovery {
Integer nb = 0;
try {
while (obj != null && obj.getLong("last_id") != start) {
while ((obj != null) && (obj.getLong("last_id") != start)) {
JSONObject messages = obj.getJSONObject("messages");
Iterator<?> keys = messages.keys();
while (keys.hasNext()) {