Skip to content

Commit 4390ca8

Browse files
committed
Fixed PMD issues
1 parent 43327c0 commit 4390ca8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/magento/idea/magento2plugin/actions/generation/dialog/NewDataModelDialog.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,13 +241,13 @@ private void formatProperties() {
241241
for (int index = 0; index < rowCount; index++) {
242242
name = propertiesTable.getValueAt(index, 0).toString();
243243
type = propertiesTable.getValueAt(index, 1).toString();
244-
properties.add((new ClassPropertyData(
244+
properties.add(new ClassPropertyData( // NOPMD
245245
type,
246246
CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, name),
247247
CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name),
248248
name,
249249
CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_UNDERSCORE, name)
250-
)).string());
250+
).string());
251251
}
252252
}
253253

0 commit comments

Comments
 (0)