Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import io.opentelemetry.api.common.Attributes;
import io.opentelemetry.sdk.resources.Resource;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
Expand Down Expand Up @@ -77,7 +78,7 @@ boolean isReadable(Path path) {

@MustBeClosed
Stream<String> lines(Path path) throws IOException {
return Files.lines(path);
return Files.lines(path, Charset.defaultCharset());
}

List<String> lineList(Path path) throws IOException {
Expand Down
Loading