Skip to content

Commit

Permalink
fixed some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzvieli committed Oct 2, 2024
1 parent b0f8d92 commit 6c3ca58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/src/main/java/ola/OlaClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public PluginListReply getPlugins() {
/**
* Reload the plugins.
*
* @return The list of plugings.
* @return Acknowledgement.
*/
public Ack reloadPlugins() {
return (Ack) callRpcMethod("ReloadPlugins", PluginReloadRequest.newBuilder().build());
Expand All @@ -131,7 +131,7 @@ public Ack reloadPlugins() {
* Get a plugin description from olad.
*
* @param pluginId number of the plugin for which to receive the description
* @return The list of plugings.
* @return The description of the plugin.
*/
public PluginDescriptionReply getPluginDescription(int pluginId) {
PluginDescriptionRequest request = PluginDescriptionRequest.newBuilder()
Expand Down Expand Up @@ -162,7 +162,7 @@ public PluginStateReply getPluginState(int pluginId) {
*
* @param pluginId number of the plugin for which to change the state
* @param enabled whether the plugin should be enabled or not
* @return The list of plugings.
* @return Acknowledgement.
*/
public Ack setPluginState(int pluginId, boolean enabled) {
PluginStateChangeRequest request = Ola.PluginStateChangeRequest.newBuilder()
Expand Down

0 comments on commit 6c3ca58

Please sign in to comment.