You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Stephan202 (via GitHub)" <gi...@apache.org> on 2023/01/30 05:18:28 UTC

[GitHub] [maven-compiler-plugin] Stephan202 commented on a diff in pull request #170: [MCOMPILER-503] Resolve all annotation processor dependencies together

Stephan202 commented on code in PR #170:
URL: https://github.com/apache/maven-compiler-plugin/pull/170#discussion_r1090181663


##########
src/it/setup_annotation-verify-plugin/src/main/java/org.apache.maven.plugins.compiler.it/SourcePathReadGoal.java:
##########
@@ -80,13 +79,12 @@ private void assertGeneratedSourceFileFor( String sourceClass, List<String> sour
                 try
                 {
                     String[] nameParts = sourceClass.split( "\\." );
-                    String content = FileUtils.fileRead( f );
+                    String content = new String( Files.readAllBytes( f.toPath() ) );

Review Comment:
   I wonder: shouldn't this code call one of the [two-arg `String` constructors](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/String.html#%3Cinit%3E(byte%5B%5D,java.lang.String)) and pass in the charset specified by `project.build.sourceEncoding`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@maven.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org