We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43327c0 commit 4390ca8Copy full SHA for 4390ca8
src/com/magento/idea/magento2plugin/actions/generation/dialog/NewDataModelDialog.java
@@ -241,13 +241,13 @@ private void formatProperties() {
241
for (int index = 0; index < rowCount; index++) {
242
name = propertiesTable.getValueAt(index, 0).toString();
243
type = propertiesTable.getValueAt(index, 1).toString();
244
- properties.add((new ClassPropertyData(
+ properties.add(new ClassPropertyData( // NOPMD
245
type,
246
CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, name),
247
CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name),
248
name,
249
CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_UNDERSCORE, name)
250
- )).string());
+ ).string());
251
}
252
253
0 commit comments