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

Commit 424b69c6 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "Replaced deprecated String Constructor"

parents 3ba01ea0 a06b4e69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -776,7 +776,7 @@ public class RunningServices extends ListActivity
                    && buffer[index] <= '9') {
                    index++;
                }
                String str = new String(buffer, 0, start, index-start);
                String str = new String(buffer, start, index-start);
                return ((long)Integer.parseInt(str)) * 1024;
            }
            index++;