Skip to content

Commit

Permalink
Regression in JavacFileManager
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <stryker@redhat.com>
  • Loading branch information
Rob Stryker committed Feb 22, 2024
1 parent 3076098 commit 3fc8c17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ private void configurePaths(JavaProject javaProject, Context context) {
IResource member = javaProject.getProject().getParent().findMember(javaProject.getOutputLocation());
if( member != null ) {
File f = member.getLocation().toFile();
List l = List.of(member);
List l = List.of(f);
fileManager.setLocation(StandardLocation.CLASS_OUTPUT, l);
}
fileManager.setLocation(StandardLocation.SOURCE_PATH, classpathEntriesToFiles(javaProject, entry -> entry.getEntryKind() == IClasspathEntry.CPE_SOURCE));
Expand Down

0 comments on commit 3fc8c17

Please sign in to comment.