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

Shell: Improve readability of cache_path()

I prefer String::format over StringBuilder here.
Also simplified a weird continue statement.
This commit is contained in:
William McPherson 2019-12-10 18:02:43 +11:00 committed by Andreas Kling
parent c0696ad3aa
commit bb311b970f
2 changed files with 4 additions and 11 deletions

View file

@ -3,7 +3,6 @@
#include <AK/BinarySearch.h>
#include <AK/QuickSort.h>
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/Vector.h>
#include <LibCore/CDirIterator.h>
#include <sys/stat.h>