Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GEODE-52: Remove @author tags from Java source #100

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
* </type>
* </property>
* </pre>
* @author sbawaska
*/
public class EnumType extends org.hibernate.type.EnumType {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/**
*
* @author sbawaska
*/
public interface EntityVersion extends SoftLock {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

/**
*
* @author sbawaska
*/
public class EntityVersionImpl implements EntityVersion {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* wraps {@link CacheKey}, and implements equals and
* hashCode. This is required for register interest
* operation/prefetching
* @author sbawaska
*
*/
public class KeyWrapper implements DataSerializable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@
/**
* Simple JavaBean domain object representing an owner.
*
* @author Ken Krebs
* @author Juergen Hoeller
* @author Sam Brannen
*/
@javax.persistence.Entity
@Entity
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import java.util.concurrent.TimeUnit;

/**
* @author jdeppe
*/
public abstract class AbstractListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import javax.servlet.ServletRequestAttributeListener;

/**
* @author jdeppe
*/
public class ServletRequestAttributeListenerImpl extends AbstractListener
implements ServletRequestAttributeListener {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
* marked with @After and @Before (but also the Test method itself) can request
* this name for which it is running.
*
* @author Rudy De Busscher
*/
public class NamedRunner extends BlockJUnit4ClassRunner {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import java.net.URLClassLoader;

/**
* @author StackOverflow
*/
public class SeparateClassloaderTestRunner extends BlockJUnit4ClassRunner {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.junit.experimental.categories.Category;

/**
* @author Jens Deppe
*/
@Category(UnitTest.class)
public class Tomcat7SessionsJUnitTest extends TestSessionsBase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
/**
* Statistics for modules.
*
* @author sbawaska
*/
public class ModuleStatistics {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* Class <code>RegionConfiguration</code> encapsulates the configuration attributes for a <code>Region</code> to be
* created on the server.
*
* @author Barry Oglesby
* @since 6.5
*/
@SuppressWarnings({"serial", "unchecked"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
/**
* Touches the keys contained in the set of keys by performing a get on the partitioned region.
*
* @author Barry Oglesby
*/
public class TouchPartitionedRegionEntriesFunction implements Function, Declarable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* Touches the keys contained in the set of keys by performing a get on the replicated region. This is a non-data-aware
* function invoked using onMembers or onServers.
*
* @author Barry Oglesby
*/
public class TouchReplicatedRegionEntriesFunction implements Function, Declarable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.junit.experimental.categories.Category;

/**
* @author Jens Deppe
*/
@Category(UnitTest.class)
public class Tomcat6SessionsJUnitTest extends TestSessionsBase {
Expand Down
Loading