Skip to content

Commit d5f776f

Browse files
authored
fixed spelling error in Classname AbstracMavenProjectConfigurator (#412)
- renamed to AbstractMavenProjectConfigurator
1 parent 0014af9 commit d5f776f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/com.gwtplugins.gdt.eclipse.maven/src/com/google/gdt/eclipse/maven/configurators/AbstracMavenProjectConfigurator.java renamed to plugins/com.gwtplugins.gdt.eclipse.maven/src/com/google/gdt/eclipse/maven/configurators/AbstractMavenProjectConfigurator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* installation. As long as these classes are only invoked through m2Eclipe's extension points,
4040
* other parts of this plugin can be used without requiring the m2Eclipse dependencies.
4141
*/
42-
public abstract class AbstracMavenProjectConfigurator extends AbstractProjectConfigurator {
42+
public abstract class AbstractMavenProjectConfigurator extends AbstractProjectConfigurator {
4343
/**
4444
* Optional callback interface for callers to get notifications before or after adding natures to
4545
* a project. Useful in cases where callers want to execute code before or after applying the

plugins/com.gwtplugins.gdt.eclipse.maven/src/com/google/gdt/eclipse/maven/configurators/MavenProjectConfigurator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* only invoked through m2Eclipe's extension points, other parts of this plug-in can be used without requiring the
4949
* m2Eclipse dependencies.
5050
*/
51-
public class MavenProjectConfigurator extends AbstracMavenProjectConfigurator {
51+
public class MavenProjectConfigurator extends AbstractMavenProjectConfigurator {
5252

5353
/**
5454
* These properties may be pulled from the gwt-maven-plugin configuration of the pom to be used in configuring the GWT

0 commit comments

Comments
 (0)