Browse Source

Fix my previous stealth comit.

Change-Id: I47779bffe5a05145845275e94ed6929cd6bba01c
Reviewed-on: http://gerrit.dmdirc.com/3447
Reviewed-by: Chris Smith <chris@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
pull/1/head
Greg Holmes 10 years ago
parent
commit
0631ed5f86

+ 4
- 4
src/com/dmdirc/events/ActionEvent.java View File

1
 /*
1
 /*
2
  * Copyright (c) 2006-2014 DMDirc Developers
2
  * Copyright (c) 2006-2014 DMDirc Developers
3
- * 
3
+ *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal
6
  * in the Software without restriction, including without limitation the rights
6
  * in the Software without restriction, including without limitation the rights
7
  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
  * copies of the Software, and to permit persons to whom the Software is
8
  * copies of the Software, and to permit persons to whom the Software is
9
  * furnished to do so, subject to the following conditions:
9
  * furnished to do so, subject to the following conditions:
10
- * 
10
+ *
11
  * The above copyright notice and this permission notice shall be included in
11
  * The above copyright notice and this permission notice shall be included in
12
  * all copies or substantial portions of the Software.
12
  * all copies or substantial portions of the Software.
13
- * 
13
+ *
14
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
  * Base class for all action events.
26
  * Base class for all action events.
27
  */
27
  */
28
 public abstract class ActionEvent extends DMDircEvent {
28
 public abstract class ActionEvent extends DMDircEvent {
29
-    
29
+
30
 }
30
 }

+ 1
- 1
src/com/dmdirc/events/ChannelClosedEvent.java View File

27
 /**
27
 /**
28
  * Event raised when a channel is closed.
28
  * Event raised when a channel is closed.
29
  */
29
  */
30
-public class ChannelClosedEvent extends ChannelEvent {
30
+public class ChannelClosedEvent extends ChannelDisplayableEvent {
31
 
31
 
32
     public ChannelClosedEvent(final Channel channel) {
32
     public ChannelClosedEvent(final Channel channel) {
33
         super(channel);
33
         super(channel);

+ 1
- 1
src/com/dmdirc/events/ChannelOpenedEvent.java View File

27
 /**
27
 /**
28
  * Event raised when a channel is opened.
28
  * Event raised when a channel is opened.
29
  */
29
  */
30
-public class ChannelOpenedEvent extends ChannelEvent {
30
+public class ChannelOpenedEvent extends ChannelDisplayableEvent {
31
 
31
 
32
     public ChannelOpenedEvent(final Channel channel) {
32
     public ChannelOpenedEvent(final Channel channel) {
33
         super(channel);
33
         super(channel);

+ 1
- 1
src/com/dmdirc/events/ChannelUserEvent.java View File

28
 /**
28
 /**
29
  * Base type for events that occur in channels against users.
29
  * Base type for events that occur in channels against users.
30
  */
30
  */
31
-public abstract class ChannelUserEvent extends ChannelEvent {
31
+public abstract class ChannelUserEvent extends ChannelDisplayableEvent {
32
 
32
 
33
     private final ChannelClientInfo user;
33
     private final ChannelClientInfo user;
34
 
34
 

+ 4
- 4
src/com/dmdirc/events/PluginEvent.java View File

1
 /*
1
 /*
2
  * Copyright (c) 2006-2014 DMDirc Developers
2
  * Copyright (c) 2006-2014 DMDirc Developers
3
- * 
3
+ *
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5
  * of this software and associated documentation files (the "Software"), to deal
5
  * of this software and associated documentation files (the "Software"), to deal
6
  * in the Software without restriction, including without limitation the rights
6
  * in the Software without restriction, including without limitation the rights
7
  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
  * copies of the Software, and to permit persons to whom the Software is
8
  * copies of the Software, and to permit persons to whom the Software is
9
  * furnished to do so, subject to the following conditions:
9
  * furnished to do so, subject to the following conditions:
10
- * 
10
+ *
11
  * The above copyright notice and this permission notice shall be included in
11
  * The above copyright notice and this permission notice shall be included in
12
  * all copies or substantial portions of the Software.
12
  * all copies or substantial portions of the Software.
13
- * 
13
+ *
14
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
  * Base class for all plugin events.
26
  * Base class for all plugin events.
27
  */
27
  */
28
 public abstract class PluginEvent extends DMDircEvent {
28
 public abstract class PluginEvent extends DMDircEvent {
29
-    
29
+
30
 }
30
 }

Loading…
Cancel
Save