Workaround to use new version of intellij on Beta #267
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
RDGraph
RSAC
wontfix
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: D-Net/dnet-hadoop#267
Loading…
Reference in New Issue
No description provided.
Delete Branch "beta_intellij"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The Scala compiler plugin on the new IntelliJ version uses JVM 17.
This means that using lines functions, it calls the function implemented on java 11 for string. This causes breaks in the code since the compiler thinks that the pipeline is java and not scala.
This PR updated the lines function to its implementation linesWithSeparators.map(l => l.stripLineEnd) to make things works
Thanks @sandro.labruzzo I tested also it locally and using IntelliJ IDEA 2022.3.1 (Community Edition) I confirm it works.