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
@Override
public String getComponentName() {
return null;
return "DummyApplicationComponent";
}
}

View File

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

View File

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