Skip to content

Commit ae53ff3

Browse files
committed
unify @author
1 parent 2b21d08 commit ae53ff3

File tree

258 files changed

+428
-402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+428
-402
lines changed

pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,7 @@
934934
</contributor>
935935
<contributor>
936936
<name>Barnaby Court</name>
937+
<email>[email protected]</email>
937938
</contributor>
938939
<contributor>
939940
<name>Andreas Hangler</name>
@@ -961,6 +962,7 @@
961962
</contributor>
962963
<contributor>
963964
<name>Mike Gallaher</name>
965+
<email>[email protected]</email>
964966
</contributor>
965967
<contributor>
966968
<name>Dierk Koenig</name>
@@ -973,6 +975,7 @@
973975
</contributor>
974976
<contributor>
975977
<name>Chris Eldredge</name>
978+
<email>[email protected]</email>
976979
</contributor>
977980
<contributor>
978981
<name>Hans Donner</name>
@@ -982,6 +985,7 @@
982985
</contributor>
983986
<contributor>
984987
<name>George Murnock</name>
988+
<email>[email protected]</email>
985989
</contributor>
986990
<contributor>
987991
<name>Kent Tong</name>
@@ -1015,6 +1019,7 @@
10151019
</contributor>
10161020
<contributor>
10171021
<name>Mark van Leeuwen</name>
1022+
<url>https://sourceforge.net/users/marlee/</url>
10181023
</contributor>
10191024
<contributor>
10201025
<name>Brad Murray</name>
@@ -1078,6 +1083,7 @@
10781083
</contributor>
10791084
<contributor>
10801085
<name>Mike Dirolf</name>
1086+
<email>[email protected]</email>
10811087
</contributor>
10821088
<contributor>
10831089
<name>Mirko Friedenhagen</name>
@@ -1278,6 +1284,26 @@
12781284
<contributor>
12791285
<name>Christoph Burgmer</name>
12801286
</contributor>
1287+
<contributor>
1288+
<name>Tom Anderson</name>
1289+
<email>[email protected]</email>
1290+
</contributor>
1291+
<contributor>
1292+
<name>Knut Johannes Dahle</name>
1293+
<email>[email protected]</email>
1294+
</contributor>
1295+
<contributor>
1296+
<name>Alexei Goussev</name>
1297+
<email>[email protected]</email>
1298+
</contributor>
1299+
<contributor>
1300+
<name>Nick Kralevich</name>
1301+
<email>[email protected]</email>
1302+
</contributor>
1303+
<contributor>
1304+
<name>Marcos Vinicius B. de Souza</name>
1305+
<email>[email protected]</email>
1306+
</contributor>
12811307
</contributors>
12821308
<dependencies>
12831309
<!-- this includes httpclient as depencency -->

src/main/java/org/htmlunit/AlertHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* A handler for JavaScript alerts. Alerts are triggered when the JavaScript method Window.alert()
2121
* is called.
2222
*
23-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
23+
* @author Mike Bowler
2424
* @author Ronald Brill
2525
*/
2626
@FunctionalInterface

src/main/java/org/htmlunit/BrowserVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* outside is changed. This is more or less the same you can do with real browsers installing
5454
* plugins like UserAgentSwitcher.
5555
*
56-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
56+
* @author Mike Bowler
5757
* @author Daniel Gredler
5858
* @author Marc Guillemot
5959
* @author Chris Erskine

src/main/java/org/htmlunit/CollectingAlertHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* A simple alert handler that keeps track of alerts in a list.
2323
*
24-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
24+
* @author Mike Bowler
2525
*/
2626
public class CollectingAlertHandler implements AlertHandler, Serializable {
2727

src/main/java/org/htmlunit/ConfirmHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* A handler for the JavaScript function <code>window.confirm()</code>. Confirms
2121
* are triggered when the JavaScript function <code>window.confirm()</code> is invoked.
2222
*
23-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
23+
* @author Mike Bowler
2424
* @author Ronald Brill
2525
*/
2626
@FunctionalInterface

src/main/java/org/htmlunit/DefaultPageCreator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
* </tr>
7070
* </table>
7171
*
72-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
73-
* @author <a href="mailto:[email protected]">Christian Sell</a>
74-
* @author <a href="mailto:[email protected]">Brad Clarke</a>
72+
* @author Mike Bowler
73+
* @author Christian Sell
74+
* @author Brad Clarke
7575
* @author Marc Guillemot
7676
* @author Ahmed Ashour
7777
* @author Daniel Gredler

src/main/java/org/htmlunit/ElementNotFoundException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* An exception that is thrown when a specified XML element cannot be found in the DOM model.
1919
*
20-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
20+
* @author Mike Bowler
2121
*/
2222
public class ElementNotFoundException extends RuntimeException {
2323

src/main/java/org/htmlunit/FailingHttpStatusCodeException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* An exception that is thrown when the server returns a failing status code.
2121
*
22-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
22+
* @author Mike Bowler
2323
* @author Marc Guillemot
2424
*/
2525
public class FailingHttpStatusCodeException extends RuntimeException {

src/main/java/org/htmlunit/HttpMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* @see <a href="http://www.ietf.org/rfc/rfc2616.txt">RFC2616</a>
2121
* @see <a href="http://tools.ietf.org/html/rfc5789">RFC5789</a>
2222
*
23-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
23+
* @author Mike Bowler
2424
* @author Ahmed Ashour
2525
* @author Marc Guillemot
2626
*/

src/main/java/org/htmlunit/HttpWebConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
/**
118118
* Default implementation of {@link WebConnection}, using the HttpClient library to perform HTTP requests.
119119
*
120-
* @author <a href="mailto:[email protected]">Mike Bowler</a>
120+
* @author Mike Bowler
121121
* @author Noboru Sinohara
122122
* @author David D. Kilzer
123123
* @author Marc Guillemot

0 commit comments

Comments
 (0)