Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 29842547 authored by Joas Schilling's avatar Joas Schilling Committed by tobiasKaminsky
Browse files

Remove debug logs

parent 3a714093
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -105,8 +105,6 @@ public class GetRemoteActivitiesOperation extends RemoteOperation{
                String link = nextPageHeader.getValue();
                if (link.startsWith("<") && link.endsWith(">; rel=\"next\"")) {
                    nextUrl = nextPageHeader.getValue().substring(1, link.length() - 13);
                    Log_OC.d(TAG, "nextUrl");
                    Log_OC.d(TAG, nextUrl);
                } else {
                    nextUrl = "";
                }
@@ -145,7 +143,7 @@ public class GetRemoteActivitiesOperation extends RemoteOperation{
        return result;
    }

    public Boolean hasMoreActivities() {
    public boolean hasMoreActivities() {
        return !nextUrl.isEmpty();
    }