Replace System.getProperty('line.separator') with System.lineSeparator().

Resolves #13768
This commit is contained in:
Grzegorz Bobryk
2024-11-03 16:27:09 +01:00
committed by Greyson Parrelli
parent cafbf48783
commit 87500449a0
3 changed files with 3 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ public class LogSectionLogcat implements LogSection {
final Process process = Runtime.getRuntime().exec("logcat -d");
final BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));
final StringBuilder log = new StringBuilder();
final String separator = System.getProperty("line.separator");
final String separator = System.lineSeparator();
String line;
while ((line = bufferedReader.readLine()) != null) {