Skip to content

Commit 5507f6d

Browse files
committed
Restrict the visibility of the TS3Api and TS3ApiAsync constructors
1 parent 3676af3 commit 5507f6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/github/theholywaffle/teamspeak3/TS3Api.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public class TS3Api {
7777
* @param asyncApi
7878
* the asynchronous version of the API this class routes its method calls through
7979
*/
80-
public TS3Api(TS3ApiAsync asyncApi) {
80+
TS3Api(TS3ApiAsync asyncApi) {
8181
this.asyncApi = asyncApi;
8282
}
8383

src/main/java/com/github/theholywaffle/teamspeak3/TS3ApiAsync.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public class TS3ApiAsync {
9797
* @param commandQueue
9898
* the queue to send commands to
9999
*/
100-
public TS3ApiAsync(TS3Query query, CommandQueue commandQueue) {
100+
TS3ApiAsync(TS3Query query, CommandQueue commandQueue) {
101101
this.query = query;
102102
this.commandQueue = commandQueue;
103103
}

0 commit comments

Comments
 (0)