This commit is contained in:
Anna Bulenkova 2014-12-04 13:49:54 +01:00
parent 2b586ac832
commit e115163ba8
3 changed files with 3 additions and 3 deletions

View File

@ -19,6 +19,6 @@ public class DummyApplicationComponentImpl implements DummyApplicationComponent
@NotNull @NotNull
@Override @Override
public String getComponentName() { public String getComponentName() {
return null; return "DummyApplicationComponent";
} }
} }

View File

@ -34,6 +34,6 @@ public class DummyModuleComponentImpl implements DummyModuleComponent {
@NotNull @NotNull
@Override @Override
public String getComponentName() { public String getComponentName() {
return null; return "DummyModuleComponent";
} }
} }

View File

@ -29,6 +29,6 @@ public class DummyProjectComponentImpl implements DummyProjectComponent {
@NotNull @NotNull
@Override @Override
public String getComponentName() { public String getComponentName() {
return null; return "DummyProjectComponent";
} }
} }