Skip to content

Commit

Permalink
fix(#2938): checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Mar 15, 2024
1 parent c3a6f2c commit 4004422
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eo-maven-plugin/src/main/java/org/eolang/maven/PhiMojo.java
Expand Up @@ -170,8 +170,10 @@ count, new Rel(this.phiInputDir), new Rel(this.phiOutputDir)
* @param train Train that optimize and traslates given xmir
* @param xmir Text of xmir
* @return Translated xmir
* @throws ImpossibleToPhiTranslationException If fails to translate given XMIR to phi
*/
private static String translated(final Train<Shift> train, final XML xmir) throws ImpossibleToPhiTranslationException {
private static String translated(final Train<Shift> train, final XML xmir)
throws ImpossibleToPhiTranslationException {
final XML translated = new Xsline(
train.with(new StClasspath("/org/eolang/maven/phi/to-phi.xsl"))
).pass(xmir);
Expand Down

0 comments on commit 4004422

Please sign in to comment.