Pārlūkot izejas kodu

Change header?

Change-Id: Ic35853b0be7901c0d9b457ef5d099105e4852560
Reviewed-on: http://gerrit.dmdirc.com/2075
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Chris Smith <chris@dmdirc.com>
tags/0.7rc1
Greg Holmes 13 gadus atpakaļ
vecāks
revīzija
d9b65da75f
59 mainītis faili ar 65 papildinājumiem un 60 dzēšanām
  1. 1
    2
      src/com/dmdirc/util/CommandUtils.java
  2. 1
    1
      src/com/dmdirc/util/ConfigFile.java
  3. 1
    1
      src/com/dmdirc/util/DateUtils.java
  4. 1
    1
      src/com/dmdirc/util/DoubleMap.java
  5. 1
    1
      src/com/dmdirc/util/DownloadListener.java
  6. 1
    1
      src/com/dmdirc/util/Downloader.java
  7. 1
    1
      src/com/dmdirc/util/EquatableWeakReference.java
  8. 1
    1
      src/com/dmdirc/util/InvalidConfigFileException.java
  9. 7
    1
      src/com/dmdirc/util/ListenerList.java
  10. 1
    1
      src/com/dmdirc/util/MapList.java
  11. 1
    1
      src/com/dmdirc/util/QueuedLinkedHashSet.java
  12. 1
    1
      src/com/dmdirc/util/ReturnableThread.java
  13. 1
    1
      src/com/dmdirc/util/RollingList.java
  14. 1
    1
      src/com/dmdirc/util/SimpleInjector.java
  15. 1
    1
      src/com/dmdirc/util/StreamReader.java
  16. 1
    1
      src/com/dmdirc/util/StreamUtil.java
  17. 1
    1
      src/com/dmdirc/util/TextFile.java
  18. 1
    1
      src/com/dmdirc/util/WeakList.java
  19. 1
    1
      src/com/dmdirc/util/WeakMapList.java
  20. 1
    1
      src/com/dmdirc/util/validators/ColourValidator.java
  21. 1
    1
      src/com/dmdirc/util/validators/DisabledOptionValidator.java
  22. 1
    1
      src/com/dmdirc/util/validators/FileNameValidator.java
  23. 1
    1
      src/com/dmdirc/util/validators/IdentValidator.java
  24. 1
    1
      src/com/dmdirc/util/validators/NicknameValidator.java
  25. 1
    1
      src/com/dmdirc/util/validators/NotEmptyValidator.java
  26. 1
    1
      src/com/dmdirc/util/validators/NumericalValidator.java
  27. 1
    1
      src/com/dmdirc/util/validators/OptionalValidator.java
  28. 1
    1
      src/com/dmdirc/util/validators/PermissiveValidator.java
  29. 1
    1
      src/com/dmdirc/util/validators/PortValidator.java
  30. 1
    1
      src/com/dmdirc/util/validators/RegexStringValidator.java
  31. 1
    1
      src/com/dmdirc/util/validators/RegexValidator.java
  32. 1
    1
      src/com/dmdirc/util/validators/ServerNameValidator.java
  33. 1
    1
      src/com/dmdirc/util/validators/StringLengthValidator.java
  34. 1
    1
      src/com/dmdirc/util/validators/URIValidator.java
  35. 1
    1
      src/com/dmdirc/util/validators/ValidationResponse.java
  36. 1
    1
      src/com/dmdirc/util/validators/Validator.java
  37. 1
    1
      src/com/dmdirc/util/validators/ValidatorChain.java
  38. 1
    1
      test/com/dmdirc/util/CommandUtilsTest.java
  39. 1
    1
      test/com/dmdirc/util/ConfigFileTest.java
  40. 1
    1
      test/com/dmdirc/util/DateUtilsTest.java
  41. 1
    1
      test/com/dmdirc/util/DoubleMapTest.java
  42. 1
    1
      test/com/dmdirc/util/EquatableWeakReferenceTest.java
  43. 1
    1
      test/com/dmdirc/util/InvalidConfigFileExceptionTest.java
  44. 1
    1
      test/com/dmdirc/util/MapListTest.java
  45. 1
    1
      test/com/dmdirc/util/RollingListTest.java
  46. 1
    1
      test/com/dmdirc/util/TextFileTest.java
  47. 1
    1
      test/com/dmdirc/util/WeakListTest.java
  48. 1
    1
      test/com/dmdirc/util/validators/FileNameValidatorTest.java
  49. 1
    1
      test/com/dmdirc/util/validators/IdentValidatorTest.java
  50. 1
    1
      test/com/dmdirc/util/validators/NicknameValidatorTest.java
  51. 1
    1
      test/com/dmdirc/util/validators/NotEmptyValidatorTest.java
  52. 1
    1
      test/com/dmdirc/util/validators/NumericalValidatorTest.java
  53. 1
    1
      test/com/dmdirc/util/validators/OptionalValidatorTest.java
  54. 1
    1
      test/com/dmdirc/util/validators/PermissiveValidatorTest.java
  55. 1
    1
      test/com/dmdirc/util/validators/PortValidatorTest.java
  56. 1
    1
      test/com/dmdirc/util/validators/RegexStringValidatorTest.java
  57. 1
    1
      test/com/dmdirc/util/validators/RegexValidatorTest.java
  58. 1
    1
      test/com/dmdirc/util/validators/StringLengthValidatorTest.java
  59. 1
    1
      test/com/dmdirc/util/validators/ValidatorChainTest.java

+ 1
- 2
src/com/dmdirc/util/CommandUtils.java Parādīt failu

@@ -1,6 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes,
3
- * Simon Mott
2
+ * Copyright (c) 2006-2011 DMDirc Developers
4 3
  *
5 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
6 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/ConfigFile.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/DateUtils.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/DoubleMap.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/DownloadListener.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/Downloader.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/EquatableWeakReference.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/InvalidConfigFileException.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 7
- 1
src/com/dmdirc/util/ListenerList.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal
@@ -45,6 +45,9 @@ public class ListenerList {
45 45
      * @param listener The listener to be added
46 46
      */
47 47
     public <T> void add(final Class<T> listenerType, final T listener) {
48
+        if (listener == null) {
49
+            throw new IllegalArgumentException("Listener cannot be null");
50
+        }
48 51
         if (!listeners.containsKey(listenerType)) {
49 52
             listeners.put(listenerType, new CopyOnWriteArrayList<Object>());
50 53
         }
@@ -59,6 +62,9 @@ public class ListenerList {
59 62
      * @param listener The listener to be added
60 63
      */
61 64
     public void add(final String listenerType, final Object listener) {
65
+        if (listener == null) {
66
+            throw new IllegalArgumentException("Listener cannot be null");
67
+        }
62 68
         if (!listeners.containsKey(listenerType)) {
63 69
             listeners.put(listenerType, new CopyOnWriteArrayList<Object>());
64 70
         }

+ 1
- 1
src/com/dmdirc/util/MapList.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/QueuedLinkedHashSet.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/ReturnableThread.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/RollingList.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/SimpleInjector.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/StreamReader.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/StreamUtil.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/TextFile.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/WeakList.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/WeakMapList.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ColourValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/DisabledOptionValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/FileNameValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/IdentValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/NicknameValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/NotEmptyValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/NumericalValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/OptionalValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/PermissiveValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/PortValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/RegexStringValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/RegexValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ServerNameValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/StringLengthValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/URIValidator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ValidationResponse.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/Validator.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
src/com/dmdirc/util/validators/ValidatorChain.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/CommandUtilsTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/ConfigFileTest.java Parādīt failu

@@ -1,6 +1,6 @@
1 1
 
2 2
 /*
3
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
3
+ * Copyright (c) 2006-2011 DMDirc Developers
4 4
  *
5 5
  * Permission is hereby granted, free of charge, to any person obtaining a copy
6 6
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/DateUtilsTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/DoubleMapTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/EquatableWeakReferenceTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/InvalidConfigFileExceptionTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/MapListTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/RollingListTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/TextFileTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/WeakListTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/FileNameValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/IdentValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/NicknameValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/NotEmptyValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/NumericalValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/OptionalValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/PermissiveValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/PortValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/RegexStringValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/RegexValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/StringLengthValidatorTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

+ 1
- 1
test/com/dmdirc/util/validators/ValidatorChainTest.java Parādīt failu

@@ -1,5 +1,5 @@
1 1
 /*
2
- * Copyright (c) 2006-2011 Chris Smith, Shane Mc Cormack, Gregory Holmes
2
+ * Copyright (c) 2006-2011 DMDirc Developers
3 3
  *
4 4
  * Permission is hereby granted, free of charge, to any person obtaining a copy
5 5
  * of this software and associated documentation files (the "Software"), to deal

Notiek ielāde…
Atcelt
Saglabāt