Skip to content

Commit 4593db1

Browse files
committed
[master] Remove @author tags.
1 parent f1f8882 commit 4593db1

File tree

617 files changed

+1292
-1195
lines changed

Some content is hidden

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

617 files changed

+1292
-1195
lines changed

extras/connection-pool/src/main/java/org/glassfish/grizzly/connectionpool/Chain.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2013-2017 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -37,6 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40+
4041
package org.glassfish.grizzly.connectionpool;
4142

4243
import java.util.LinkedList;
@@ -48,7 +49,7 @@
4849
*
4950
* The <tt>Chain</tt> implementation is not thread safe.
5051
*
51-
* @author Alexey Stashok
52+
*
5253
*/
5354
final class Chain<E> {
5455
/**

extras/connection-pool/src/main/java/org/glassfish/grizzly/connectionpool/ConnectionInfo.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2013-2015 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2013-2017 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -37,6 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40+
4041
package org.glassfish.grizzly.connectionpool;
4142

4243
import org.glassfish.grizzly.Connection;
@@ -45,7 +46,7 @@
4546
* Pooled {@link Connection} information, that might be used for monitoring reasons.
4647
*
4748
* @param <E>
48-
* @author Alexey Stashok
49+
*
4950
*/
5051
public final class ConnectionInfo<E> {
5152
final Connection connection;

extras/connection-pool/src/main/java/org/glassfish/grizzly/connectionpool/Endpoint.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2015 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2015-2017 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -37,6 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40+
4041
package org.glassfish.grizzly.connectionpool;
4142

4243
import org.glassfish.grizzly.Connection;
@@ -49,7 +50,7 @@
4950
*
5051
* @param <E> the address type, for example for TCP transport it's {@link SocketAddress}
5152
*
52-
* @author Alexey Stashok
53+
*
5354
*/
5455
public abstract class Endpoint<E> {
5556
public abstract Object getId();

extras/connection-pool/src/main/java/org/glassfish/grizzly/connectionpool/Link.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2013-2015 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2013-2017 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -37,6 +37,7 @@
3737
* only if the new code is made subject to such option by the copyright
3838
* holder.
3939
*/
40+
4041
package org.glassfish.grizzly.connectionpool;
4142

4243
/**
@@ -50,7 +51,7 @@
5051
* If a <tt>Link</tt> is attached - it can only be attached to one {@link Chain}.
5152
*
5253
* @param <E>
53-
* @author Alexey Stashok
54+
*
5455
*/
5556
public final class Link<E> {
5657
/**

extras/connection-pool/src/main/java/org/glassfish/grizzly/connectionpool/MultiEndpointPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
*
8686
* @param <E> the address type, for example for TCP transport it's {@link SocketAddress}
8787
*
88-
* @author Alexey Stashok
88+
*
8989
*/
9090
public class MultiEndpointPool<E> {
9191

extras/connection-pool/src/main/java/org/glassfish/grizzly/connectionpool/SingleEndpointPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
*
9898
* @param <E> the address type, for example for TCP transport it's {@link SocketAddress}
9999
*
100-
* @author Alexey Stashok
100+
*
101101
*/
102102
public class SingleEndpointPool<E> {
103103
private static final Logger LOGGER = Grizzly.logger(SingleEndpointPool.class);

extras/connection-pool/src/test/java/org/glassfish/grizzly/connectionpool/MultiEndPointPoolTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
/**
6868
* The {@link MultiEndpointPool} tests.
6969
*
70-
* @author Alexey Stashok
70+
*
7171
*/
7272
public class MultiEndPointPoolTest {
7373
private static final int PORT = 18334;

extras/connection-pool/src/test/java/org/glassfish/grizzly/connectionpool/SingleEndPointPoolTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
/**
7373
* The {@link SingleEndpointPool} tests.
7474
*
75-
* @author Alexey Stashok
75+
*
7676
*/
7777
public class SingleEndPointPoolTest {
7878
private static final int PORT = 18333;

extras/grizzly-httpservice/src/main/java/org/glassfish/grizzly/osgi/httpservice/Activator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2009-2013 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2009-2017 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -58,7 +58,7 @@
5858
/**
5959
* OSGi HttpService Activator.
6060
*
61-
* @author Hubert Iwaniuk
61+
*
6262
* @since Jan 20, 2009
6363
*/
6464
public class Activator implements BundleActivator {

extras/grizzly-httpservice/src/main/java/org/glassfish/grizzly/osgi/httpservice/HttpContextImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2009-2011 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2009-2017 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -52,7 +52,7 @@
5252
/**
5353
* Grizzly OSGi {@link HttpService}s {@link HttpContext} implementation.
5454
*
55-
* @author Hubert Iwaniuk
55+
*
5656
* @since Jan 21, 2009
5757
*/
5858
public class HttpContextImpl implements HttpContext {

0 commit comments

Comments
 (0)