Skip to content

Commit

Permalink
Resolve Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alfeilex committed Jan 19, 2024
1 parent 6231bfb commit 1bc9563
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.devonfw.tools.ide.context.IdeContext;
import com.devonfw.tools.ide.tool.ide.PluginDescriptor;

public class DummyEclipseCommandlet extends PluginBasedCommandlet {
public class ExamplePluginBasedCommandlet extends PluginBasedCommandlet {
/**
* The constructor.
*
Expand All @@ -15,7 +15,7 @@ public class DummyEclipseCommandlet extends PluginBasedCommandlet {
* @param tags the {@link #getTags() tags} classifying the tool. Should be created via {@link Set#of(Object) Set.of}
* method.
*/
public DummyEclipseCommandlet(IdeContext context, String tool, Set<Tag> tags) {
public ExamplePluginBasedCommandlet(IdeContext context, String tool, Set<Tag> tags) {

super(context, tool, tags);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void testGetPluginsMap() {
IdeTestContext context = newContext(PROJECT_BASIC, "", true);
String tool = "eclipse";
Set<Tag> tags = null;
DummyEclipseCommandlet pluginBasedCommandlet = new DummyEclipseCommandlet(context, tool, tags);
ExamplePluginBasedCommandlet pluginBasedCommandlet = new ExamplePluginBasedCommandlet(context, tool, tags);

Map<String, PluginDescriptor> pluginsMap = pluginBasedCommandlet.getPluginsMap();
assertNotNull(pluginsMap);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
plugin_url=https://raw.githubusercontent.com/iloveeclipse/plugins/latest/
plugin_id=AnyEditTools.feature.group
plugin_active=false

0 comments on commit 1bc9563

Please sign in to comment.