Skip to content

Commit 5b423e8

Browse files
committed
Fixed code style
1 parent b6ce71b commit 5b423e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/com/magento/idea/magento2plugin/actions/generation/data/DataModelData.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class DataModelData {
1212
private final String fqn;
1313
private final String interfaceFQN;
1414
private final String properties;
15-
private final boolean hasInterface;
15+
private final boolean withInterface;
1616

1717
/**
1818
* Constructor.
@@ -40,7 +40,7 @@ public DataModelData(
4040
this.fqn = fqn;
4141
this.interfaceFQN = interfaceFQN;
4242
this.properties = properties;
43-
this.hasInterface = hasInterface;
43+
this.withInterface = hasInterface;
4444
}
4545

4646
/**
@@ -103,6 +103,6 @@ public String getProperties() {
103103
* @return boolean
104104
*/
105105
public boolean hasInterface() {
106-
return hasInterface;
106+
return withInterface;
107107
}
108108
}

0 commit comments

Comments
 (0)