We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531f0a4 commit 0fdc37fCopy full SHA for 0fdc37f
src/com/magento/idea/magento2uct/versioning/VersionStateManager.java
@@ -227,7 +227,7 @@ 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().isEmpty() && fqn.trim().charAt(0)
231
== '\\' ? fqn.trim() : '\\' + fqn.trim()
232
);
233
}
0 commit comments