Skip to content

Commit

Permalink
Restrict the visibility of the TS3Api and TS3ApiAsync constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
rogermb committed Jan 22, 2019
1 parent 3676af3 commit 5507f6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -77,7 +77,7 @@ public class TS3Api {
* @param asyncApi
* the asynchronous version of the API this class routes its method calls through
*/
public TS3Api(TS3ApiAsync asyncApi) {
TS3Api(TS3ApiAsync asyncApi) {
this.asyncApi = asyncApi;
}

Expand Down
Expand Up @@ -97,7 +97,7 @@ public class TS3ApiAsync {
* @param commandQueue
* the queue to send commands to
*/
public TS3ApiAsync(TS3Query query, CommandQueue commandQueue) {
TS3ApiAsync(TS3Query query, CommandQueue commandQueue) {
this.query = query;
this.commandQueue = commandQueue;
}
Expand Down

0 comments on commit 5507f6d

Please sign in to comment.