1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

ProcFS: Remove unused StringBuilder in procfs$all().

This commit is contained in:
Andreas Kling 2019-06-29 12:06:02 +02:00
parent 293946c960
commit 2735ff4687

View file

@ -585,7 +585,6 @@ ByteBuffer procfs$all(InodeIdentifier)
InterruptDisabler disabler;
auto processes = Process::all_processes();
JsonArray array;
StringBuilder builder(processes.size() * 80);
auto build_process = [&](const Process& process) {
JsonObject process_object;
process_object.set("pid", process.pid());