File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
instrumentation-docs/src/main/java/io/opentelemetry/instrumentation/docs Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 1212import io .opentelemetry .instrumentation .docs .utils .YamlHelper ;
1313import java .io .BufferedWriter ;
1414import java .io .IOException ;
15- import java .nio .charset .Charset ;
1615import java .nio .file .Files ;
1716import java .nio .file .Paths ;
1817import java .util .List ;
@@ -38,8 +37,7 @@ public static void main(String[] args) throws IOException {
3837 List <InstrumentationModule > modules = new InstrumentationAnalyzer (fileManager ).analyze ();
3938
4039 try (BufferedWriter writer =
41- Files .newBufferedWriter (
42- Paths .get (baseRepoPath + "docs/instrumentation-list.yaml" ), Charset .defaultCharset ())) {
40+ Files .newBufferedWriter (Paths .get (baseRepoPath + "docs/instrumentation-list.yaml" ))) {
4341 writer .write ("# This file is generated and should not be manually edited.\n " );
4442 writer .write ("# The structure and contents are a work in progress and subject to change.\n " );
4543 writer .write (
You can’t perform that action at this time.
0 commit comments