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

Commit a06b4e69 authored by Christian Mehlmauer's avatar Christian Mehlmauer
Browse files

Replaced deprecated String Constructor

Change-Id: I452400c9cb00b60316b0270b2f4a68c15d80b698
parent 3514cdc3
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++;