Sfoglia il codice sorgente

Pointless javadoc change.

Change-Id: If2a92795b1db6c63e359fb4bc1d79a4bc569110a
Reviewed-on: http://gerrit.dmdirc.com/3399
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Chris Smith <chris@dmdirc.com>
pull/1/head
Greg Holmes 10 anni fa
parent
commit
357a35433d

+ 1
- 5
src/com/dmdirc/FrameContainerComparator.java Vedi File

@@ -32,11 +32,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
32 32
  */
33 33
 public class FrameContainerComparator implements Comparator<FrameContainer>, Serializable {
34 34
 
35
-    /**
36
-     * A version number for this class. It should be changed whenever the class structure is changed
37
-     * (or anything else that would prevent serialized objects being unserialized with the new
38
-     * class).
39
-     */
35
+    /** A version number for this class. */
40 36
     private static final long serialVersionUID = 1;
41 37
 
42 38
     /**

+ 1
- 5
src/com/dmdirc/MissingModeAliasException.java Vedi File

@@ -31,11 +31,7 @@ import java.util.List;
31 31
  */
32 32
 public class MissingModeAliasException extends Exception {
33 33
 
34
-    /**
35
-     * A version number for this class. It should be changed whenever the class structure is changed
36
-     * (or anything else that would prevent serialized objects being unserialized with the new
37
-     * class).
38
-     */
34
+    /** A version number for this class. */
39 35
     private static final long serialVersionUID = 1;
40 36
 
41 37
     /**

+ 1
- 5
src/com/dmdirc/actions/ActionGroup.java Vedi File

@@ -40,11 +40,7 @@ import static com.google.common.base.Preconditions.checkNotNull;
40 40
  */
41 41
 public class ActionGroup implements Iterable<Action> {
42 42
 
43
-    /**
44
-     * A version number for this class. It should be changed whenever the class structure is changed
45
-     * (or anything else that would prevent serialized objects being unserialized with the new
46
-     * class).
47
-     */
43
+    /** A version number for this class. */
48 44
     private static final long serialVersionUID = 1;
49 45
     /** The actions in this group. */
50 46
     private final List<Action> actions = new ArrayList<>();

+ 1
- 5
src/com/dmdirc/actions/ActionTypeComparator.java Vedi File

@@ -32,11 +32,7 @@ import java.util.Comparator;
32 32
  */
33 33
 public final class ActionTypeComparator implements Comparator<ActionType>, Serializable {
34 34
 
35
-    /**
36
-     * A version number for this class. It should be changed whenever the class structure is changed
37
-     * (or anything else that would prevent serialized objects being unserialized with the new
38
-     * class).
39
-     */
35
+    /** A version number for this class. */
40 36
     private static final long serialVersionUID = 1;
41 37
 
42 38
     @Override

+ 1
- 5
src/com/dmdirc/commandparser/parsers/ChannelCommandParser.java Vedi File

@@ -38,11 +38,7 @@ import com.dmdirc.interfaces.CommandController;
38 38
  */
39 39
 public class ChannelCommandParser extends ChatCommandParser {
40 40
 
41
-    /**
42
-     * A version number for this class. It should be changed whenever the class structure is changed
43
-     * (or anything else that would prevent serialized objects being unserialized with the new
44
-     * class).
45
-     */
41
+    /** A version number for this class. */
46 42
     private static final long serialVersionUID = 1;
47 43
     /**
48 44
      * The channel instance that this parser is attached to.

+ 1
- 5
src/com/dmdirc/commandparser/parsers/ChatCommandParser.java Vedi File

@@ -40,11 +40,7 @@ import com.dmdirc.interfaces.CommandController;
40 40
  */
41 41
 public class ChatCommandParser extends ServerCommandParser {
42 42
 
43
-    /**
44
-     * A version number for this class. It should be changed whenever the class structure is changed
45
-     * (or anything else that would prevent serialized objects being unserialized with the new
46
-     * class).
47
-     */
43
+    /** A version number for this class. */
48 44
     private static final long serialVersionUID = 1;
49 45
     /** The container that owns this parser. */
50 46
     private MessageTarget owner;

+ 1
- 5
src/com/dmdirc/commandparser/parsers/GlobalCommandParser.java Vedi File

@@ -43,11 +43,7 @@ import javax.inject.Singleton;
43 43
 @Singleton
44 44
 public class GlobalCommandParser extends CommandParser {
45 45
 
46
-    /**
47
-     * A version number for this class. It should be changed whenever the class structure is changed
48
-     * (or anything else that would prevent serialized objects being unserialized with the new
49
-     * class).
50
-     */
46
+    /** A version number for this class. */
51 47
     private static final long serialVersionUID = 1;
52 48
 
53 49
     /**

+ 1
- 5
src/com/dmdirc/commandparser/parsers/QueryCommandParser.java Vedi File

@@ -39,11 +39,7 @@ import com.dmdirc.interfaces.CommandController;
39 39
  */
40 40
 public class QueryCommandParser extends ChatCommandParser {
41 41
 
42
-    /**
43
-     * A version number for this class. It should be changed whenever the class structure is changed
44
-     * (or anything else that would prevent serialized objects being unserialized with the new
45
-     * class).
46
-     */
42
+    /** A version number for this class. */
47 43
     private static final long serialVersionUID = 1;
48 44
     /**
49 45
      * The query instance that this parser is attached to.

+ 1
- 5
src/com/dmdirc/commandparser/parsers/ServerCommandParser.java Vedi File

@@ -39,11 +39,7 @@ import com.dmdirc.interfaces.config.AggregateConfigProvider;
39 39
  */
40 40
 public class ServerCommandParser extends GlobalCommandParser {
41 41
 
42
-    /**
43
-     * A version number for this class. It should be changed whenever the class structure is changed
44
-     * (or anything else that would prevent serialized objects being unserialized with the new
45
-     * class).
46
-     */
42
+    /** A version number for this class. */
47 43
     private static final long serialVersionUID = 1;
48 44
 
49 45
     /**

+ 1
- 5
src/com/dmdirc/config/ConfigTarget.java Vedi File

@@ -54,11 +54,7 @@ public class ConfigTarget implements Comparable<ConfigTarget>, Serializable {
54 54
         CUSTOM,
55 55
 
56 56
     }
57
-    /**
58
-     * A version number for this class. It should be changed whenever the class structure is changed
59
-     * (or anything else that would prevent serialized objects being unserialized with the new
60
-     * class).
61
-     */
57
+    /** A version number for this class. */
62 58
     private static final long serialVersionUID = 2;
63 59
     /** The type of this target. */
64 60
     protected TYPE type = ConfigTarget.TYPE.GLOBAL;

+ 1
- 5
src/com/dmdirc/config/InvalidIdentityFileException.java Vedi File

@@ -27,11 +27,7 @@ package com.dmdirc.config;
27 27
  */
28 28
 public class InvalidIdentityFileException extends Exception {
29 29
 
30
-    /**
31
-     * A version number for this class. It should be changed whenever the class structure is changed
32
-     * (or anything else that would prevent serialized objects being unserialized with the new
33
-     * class).
34
-     */
30
+    /** A version number for this class. */
35 31
     private static final long serialVersionUID = 1;
36 32
 
37 33
     /** Creates a new instance of InvalidIdentityFileException. */

+ 1
- 5
src/com/dmdirc/logger/ProgramError.java Vedi File

@@ -42,11 +42,7 @@ import javax.annotation.Nullable;
42 42
  */
43 43
 public final class ProgramError implements Serializable {
44 44
 
45
-    /**
46
-     * A version number for this class. It should be changed whenever the class structure is changed
47
-     * (or anything else that would prevent serialized objects being unserialized with the new
48
-     * class).
49
-     */
45
+    /** A version number for this class. */
50 46
     private static final long serialVersionUID = 3;
51 47
     /** Directory used to store errors. */
52 48
     private static File errorDir;

+ 1
- 5
src/com/dmdirc/plugins/NoSuchProviderException.java Vedi File

@@ -27,11 +27,7 @@ package com.dmdirc.plugins;
27 27
  */
28 28
 public class NoSuchProviderException extends RuntimeException {
29 29
 
30
-    /**
31
-     * A version number for this class. It should be changed whenever the class structure is changed
32
-     * (or anything else that would prevent serialized objects being unserialized with the new
33
-     * class).
34
-     */
30
+    /** A version number for this class. */
35 31
     private static final long serialVersionUID = 1;
36 32
 
37 33
     /**

+ 1
- 5
src/com/dmdirc/plugins/PluginException.java Vedi File

@@ -27,11 +27,7 @@ package com.dmdirc.plugins;
27 27
  */
28 28
 public class PluginException extends Exception {
29 29
 
30
-    /**
31
-     * A version number for this class. It should be changed whenever the class structure is changed
32
-     * (or anything else that would prevent serialized objects being unserialized with the new
33
-     * class).
34
-     */
30
+    /** A version number for this class. */
35 31
     private static final long serialVersionUID = 1;
36 32
 
37 33
     /**

+ 1
- 5
src/com/dmdirc/tls/CertificateDoesntMatchHostException.java Vedi File

@@ -30,11 +30,7 @@ import java.security.cert.CertificateException;
30 30
  */
31 31
 public class CertificateDoesntMatchHostException extends CertificateException {
32 32
 
33
-    /**
34
-     * A version number for this class. It should be changed whenever the class structure is changed
35
-     * (or anything else that would prevent serialized objects being unserialized with the new
36
-     * class).
37
-     */
33
+    /** A version number for this class. */
38 34
     private static final long serialVersionUID = 1;
39 35
 
40 36
     /**

+ 1
- 5
src/com/dmdirc/tls/CertificateNotTrustedException.java Vedi File

@@ -29,11 +29,7 @@ import java.security.cert.CertificateException;
29 29
  */
30 30
 public class CertificateNotTrustedException extends CertificateException {
31 31
 
32
-    /**
33
-     * A version number for this class. It should be changed whenever the class structure is changed
34
-     * (or anything else that would prevent serialized objects being unserialized with the new
35
-     * class).
36
-     */
32
+    /** A version number for this class. */
37 33
     private static final long serialVersionUID = 1;
38 34
 
39 35
     /**

+ 1
- 5
src/com/dmdirc/ui/WarningDialog.java Vedi File

@@ -71,11 +71,7 @@ public class WarningDialog extends JDialog {
71 71
             + "  The bundled UI plugins were automatically extracted from the "
72 72
             + "jar, but this did not fix the problem. DMDirc is unable to "
73 73
             + "continue and will now exit.";
74
-    /**
75
-     * A version number for this class. It should be changed whenever the class structure is changed
76
-     * (or anything else that would prevent serialized objects being unserialized with the new
77
-     * class).
78
-     */
74
+    /** A version number for this class. */
79 75
     private static final long serialVersionUID = -528603916540455179L;
80 76
 
81 77
     /** Create a new NoUIDialog. */

+ 1
- 5
src/com/dmdirc/ui/input/AdditionalTabTargets.java Vedi File

@@ -32,11 +32,7 @@ import java.util.List;
32 32
  */
33 33
 public final class AdditionalTabTargets extends ArrayList<String> {
34 34
 
35
-    /**
36
-     * A version number for this class. It should be changed whenever the class structure is changed
37
-     * (or anything else that would prevent serialized objects being unserialized with the new
38
-     * class).
39
-     */
35
+    /** A version number for this class. */
40 36
     private static final long serialVersionUID = 1;
41 37
     /** Whether to include normal targets. */
42 38
     private List<TabCompletionType> includes = new ArrayList<>(Arrays.asList(TabCompletionType.

+ 1
- 5
src/com/dmdirc/ui/messages/IRCDocument.java Vedi File

@@ -42,11 +42,7 @@ import javax.swing.UIManager;
42 42
  */
43 43
 public class IRCDocument implements Serializable, ConfigChangeListener {
44 44
 
45
-    /**
46
-     * A version number for this class. It should be changed whenever the class structure is changed
47
-     * (or anything else that would prevent serialized objects being unserialized with the new
48
-     * class).
49
-     */
45
+    /** A version number for this class. */
50 46
     private static final long serialVersionUID = 4;
51 47
     /** List of lines of text. */
52 48
     private final List<Line> lines;

+ 1
- 5
src/com/dmdirc/ui/messages/IRCTextAttribute.java Vedi File

@@ -33,11 +33,7 @@ import java.util.Map;
33 33
  */
34 34
 public final class IRCTextAttribute extends Attribute {
35 35
 
36
-    /**
37
-     * A version number for this class. It should be changed whenever the class structure is changed
38
-     * (or anything else that would prevent serialized objects being unserialized with the new
39
-     * class).
40
-     */
36
+    /** A version number for this class. */
41 37
     private static final long serialVersionUID = 1;
42 38
     /** table of all instances in this class, used by readResolve. */
43 39
     private static final Map<String, IRCTextAttribute> INSTANCE_MAP = new HashMap<>(1);

+ 1
- 5
src/com/dmdirc/ui/themes/ThemeIdentity.java Vedi File

@@ -34,11 +34,7 @@ import java.io.InputStream;
34 34
  */
35 35
 public class ThemeIdentity extends ConfigFileBackedConfigProvider {
36 36
 
37
-    /**
38
-     * A version number for this class. It should be changed whenever the class structure is changed
39
-     * (or anything else that would prevent serialized objects being unserialized with the new
40
-     * class).
41
-     */
37
+    /** A version number for this class. */
42 38
     private static final long serialVersionUID = 1;
43 39
     /** The theme that owns this identity. */
44 40
     private final Theme theme;

Loading…
Annulla
Salva