Skip to content

Commit 4018efd

Browse files
committed
Removed duplicate headers
1 parent 8250b5f commit 4018efd

2 files changed

Lines changed: 7 additions & 67 deletions

File tree

src/main/java/com/github/theholywaffle/teamspeak3/api/event/DefaultListener.java

Lines changed: 4 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,5 @@
11
package com.github.theholywaffle.teamspeak3.api.event;
22

3-
/*
4-
* #%L
5-
* TeamSpeak 3 Java API
6-
* %%
7-
* Copyright (C) 2014 Bert De Geyter
8-
* %%
9-
* Permission is hereby granted, free of charge, to any person obtaining a copy
10-
* of this software and associated documentation files (the "Software"), to deal
11-
* in the Software without restriction, including without limitation the rights
12-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13-
* copies of the Software, and to permit persons to whom the Software is
14-
* furnished to do so, subject to the following conditions:
15-
*
16-
* The above copyright notice and this permission notice shall be included in
17-
* all copies or substantial portions of the Software.
18-
*
19-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25-
* THE SOFTWARE.
26-
* #L%
27-
*/
28-
293
/*
304
* #%L
315
* TeamSpeak 3 Java API
@@ -92,28 +66,20 @@ public void onClientMoved(ClientMovedEvent e) {
9266

9367
}
9468

95-
@Override
9669
public void onChannelCreate(ChannelCreateEvent e) {
97-
// TODO Auto-generated method stub
98-
70+
9971
}
10072

101-
@Override
10273
public void onChannelDeleted(ChannelDeletedEvent e) {
103-
// TODO Auto-generated method stub
104-
74+
10575
}
10676

107-
@Override
10877
public void onChannelMoved(ChannelMovedEvent e) {
109-
// TODO Auto-generated method stub
110-
78+
11179
}
11280

113-
@Override
11481
public void onChannelPasswordChanged(ChannelPasswordChangedEvent e) {
115-
// TODO Auto-generated method stub
116-
82+
11783
}
11884

11985
}

src/main/java/com/github/theholywaffle/teamspeak3/api/event/TS3Listener.java

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,5 @@
11
package com.github.theholywaffle.teamspeak3.api.event;
22

3-
/*
4-
* #%L
5-
* TeamSpeak 3 Java API
6-
* %%
7-
* Copyright (C) 2014 Bert De Geyter
8-
* %%
9-
* Permission is hereby granted, free of charge, to any person obtaining a copy
10-
* of this software and associated documentation files (the "Software"), to deal
11-
* in the Software without restriction, including without limitation the rights
12-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13-
* copies of the Software, and to permit persons to whom the Software is
14-
* furnished to do so, subject to the following conditions:
15-
*
16-
* The above copyright notice and this permission notice shall be included in
17-
* all copies or substantial portions of the Software.
18-
*
19-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25-
* THE SOFTWARE.
26-
* #L%
27-
*/
28-
293
/*
304
* #%L
315
* TeamSpeak 3 Java API
@@ -67,11 +41,11 @@ public interface TS3Listener {
6741
public void onChannelDescriptionChanged(ChannelDescriptionEditedEvent e);
6842

6943
public void onClientMoved(ClientMovedEvent e);
70-
44+
7145
public void onChannelCreate(ChannelCreateEvent e);
72-
46+
7347
public void onChannelDeleted(ChannelDeletedEvent e);
74-
48+
7549
public void onChannelMoved(ChannelMovedEvent e);
7650

7751
public void onChannelPasswordChanged(ChannelPasswordChangedEvent e);

0 commit comments

Comments
 (0)