Skip to content

Commit 5a2a541

Browse files
committed
Move Project component to correct package
1 parent 2993a51 commit 5a2a541

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ It is a great inspiration for possible solutions and parts of the code.</p>
6868

6969
<project-components>
7070
<component>
71-
<implementation-class>TYPO3CMSProjectComponent</implementation-class>
71+
<implementation-class>com.cedricziel.idea.typo3.TYPO3CMSProjectComponent</implementation-class>
7272
</component>
7373
</project-components>
7474
</idea-plugin>

src/TYPO3CMSProjectComponent.java renamed to src/com/cedricziel/idea/typo3/TYPO3CMSProjectComponent.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package com.cedricziel.idea.typo3;
2+
13
import com.intellij.openapi.components.ProjectComponent;
24
import com.intellij.openapi.diagnostic.Logger;
35
import com.intellij.openapi.project.Project;
@@ -24,7 +26,7 @@ public void disposeComponent() {
2426
@Override
2527
@NotNull
2628
public String getComponentName() {
27-
return "TYPO3CMSProjectComponent";
29+
return "com.cedricziel.idea.typo3.TYPO3CMSProjectComponent";
2830
}
2931

3032
@Override

0 commit comments

Comments
 (0)