Skip to content

Commit 531f0a4

Browse files
committed
1239: static fix
1 parent ae6c5f0 commit 531f0a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/com/magento/idea/magento2uct/versioning/VersionStateManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,8 @@ private void compute(final VersionStateIndex index) {
227227
*/
228228
private String escapeFqn(final @NotNull String fqn) {
229229
return MagentoTypeEscapeUtil.escape(
230-
fqn.trim().length() > 0 && fqn.trim().charAt(0) == '\\' ? fqn.trim() : '\\' + fqn.trim()
230+
fqn.trim().length() > 0 && fqn.trim().charAt(0)
231+
== '\\' ? fqn.trim() : '\\' + fqn.trim()
231232
);
232233
}
233234
}

0 commit comments

Comments
 (0)