Skip to content

Commit

Permalink
Change sdk to api (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pjiesco authored Oct 6, 2023
1 parent 1964ce0 commit cc5c915
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static Pair<JsonObject, TypeSpec.Builder> process(TouchPortalPluginAnnota
TypeSpec.Builder pluginTypeSpecBuilder = SpecUtils.createPluginTypeSpecBuilder(pluginElement, plugin);

JsonObject jsonPlugin = new JsonObject();
jsonPlugin.addProperty(PluginHelper.SDK, PluginHelper.TOUCH_PORTAL_PLUGIN_VERSION);
jsonPlugin.addProperty(PluginHelper.API, PluginHelper.TOUCH_PORTAL_PLUGIN_VERSION);
jsonPlugin.addProperty(PluginHelper.VERSION, plugin.version());
jsonPlugin.addProperty(PluginHelper.NAME, PluginHelper.getPluginName(pluginElement, plugin));
jsonPlugin.addProperty(PluginHelper.ID, PluginHelper.getPluginId(pluginElement));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Touch Portal Plugin Plugin Helper
*/
public class PluginHelper {
public static final String SDK = "sdk";
public static final String API = "api";
public static final String VERSION = "version";
public static final String NAME = GenericHelper.NAME;
public static final String ID = GenericHelper.ID;
Expand Down

0 comments on commit cc5c915

Please sign in to comment.