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

Commit 131f4b8d authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix ImpossibleNullComparison errorprone warning" into main am: 1614fc41

parents bca026c1 1614fc41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ public final class BatteryUsageLogUtils {
                        .append(ConvertUtils.utcToLocalTimeForLogging(entry.getTimestamp()))
                        .append(" " + entry.getAction());
        final String description = entry.getActionDescription();
        if (description != null && !description.isEmpty()) {
        if (!description.isEmpty()) {
            builder.append(" " + description);
        }
        return builder.toString();