We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae6c5f0 commit 531f0a4Copy full SHA for 531f0a4
src/com/magento/idea/magento2uct/versioning/VersionStateManager.java
@@ -227,7 +227,8 @@ private void compute(final VersionStateIndex index) {
227
*/
228
private String escapeFqn(final @NotNull String fqn) {
229
return MagentoTypeEscapeUtil.escape(
230
- fqn.trim().length() > 0 && fqn.trim().charAt(0) == '\\' ? fqn.trim() : '\\' + fqn.trim()
+ fqn.trim().length() > 0 && fqn.trim().charAt(0)
231
+ == '\\' ? fqn.trim() : '\\' + fqn.trim()
232
);
233
}
234
0 commit comments