File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
src/com/magento/idea/magento2plugin/actions/generation/generator/pool Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -163,18 +163,15 @@ public boolean hasErrorMessages() {
163
163
164
164
/**
165
165
* Show error messages for the user.
166
- * Those errors are system and must be processed by the dev during the testing.
167
- * They cannot go to live.
168
166
*/
169
167
private void showErrorMessages () {
170
168
if (!errors .isEmpty ()) {
171
169
final String title = this .exceptionBundle .message (
172
- "exception.common.checkLogg"
170
+ "exception.common.title"
171
+ );
172
+ final String errorMessage = this .exceptionBundle .message (
173
+ "exception.common.informUs"
173
174
);
174
- final AtomicInteger messageNum = new AtomicInteger (1 );
175
- final String errorMessage = errors .stream ()
176
- .map (message -> messageNum .getAndIncrement () + ". " + message )
177
- .collect (Collectors .joining ("\n " ));
178
175
179
176
JOptionPane .showMessageDialog (
180
177
null ,
You can’t perform that action at this time.
0 commit comments