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

Commit b36e6054 authored by Dmitri Plotnikov's avatar Dmitri Plotnikov Committed by Android (Google) Code Review
Browse files

Merge "Ignore empty scaling_boost_frequencies files" into main

parents b3b025c4 b6704db0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -129,6 +129,9 @@ public class CpuScalingPolicyReader {
            String[] strings = contents.split(" ");
            intArray.clear();
            for (String s : strings) {
                if (s.isBlank()) {
                    continue;
                }
                try {
                    intArray.add(Integer.parseInt(s));
                } catch (NumberFormatException e) {