Skip to content

Commit 8389456

Browse files
committed
refactor: sanitize javadoc
1 parent 7273c24 commit 8389456

File tree

204 files changed

+127
-337
lines changed

Some content is hidden

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

204 files changed

+127
-337
lines changed

async-method-invocation/src/test/java/com/iluwatar/async/method/invocation/ThreadAsyncExecutorTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@
4444
import org.mockito.MockitoAnnotations;
4545

4646
/**
47-
* Date: 12/6/15 - 10:49 AM
47+
* ThreadAsyncExecutorTest
4848
*
49-
* @author Jeroen Meulemeester
5049
*/
5150
class ThreadAsyncExecutorTest {
5251

builder/src/test/java/com/iluwatar/builder/HeroTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131
import org.junit.jupiter.api.Test;
3232

3333
/**
34-
* Date: 12/6/15 - 11:01 PM
34+
* HeroTest
3535
*
36-
* @author Jeroen Meulemeester
3736
*/
3837
class HeroTest {
3938

chain-of-responsibility/src/test/java/com/iluwatar/chain/OrcKingTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
import org.junit.jupiter.api.Test;
3131

3232
/**
33-
* Date: 12/6/15 - 9:29 PM
33+
* OrcKingTest
3434
*
35-
* @author Jeroen Meulemeester
3635
*/
3736
class OrcKingTest {
3837

composite/src/test/java/com/iluwatar/composite/MessengerTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
import org.junit.jupiter.api.Test;
3535

3636
/**
37-
* Date: 12/11/15 - 8:12 PM
37+
* MessengerTest
3838
*
39-
* @author Jeroen Meulemeester
4039
*/
4140
class MessengerTest {
4241

context-object/src/test/java/com/iluwatar/contect/object/ServiceContextTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@
3737
import static org.junit.jupiter.api.Assertions.assertNull;
3838

3939
/**
40-
* Date: 10/24/2022 - 3:18
40+
* ServiceContextTest
4141
*
42-
* @author Chak Chan
4342
*/
4443
public class ServiceContextTest {
4544

data-bus/src/main/java/com/iluwatar/databus/AbstractDataType.java

-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ of this software and associated documentation files (the "Software"), to deal
5454
/**
5555
* Base for data to send via the Data-Bus.
5656
*
57-
* @author Paul Campbell ([email protected])
5857
*/
5958
@Getter
6059
@Setter

data-bus/src/main/java/com/iluwatar/databus/App.java

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
/**
3535
* The Data Bus pattern.
3636
*
37-
* @author Paul Campbell ([email protected])
3837
* @see <a href="http://wiki.c2.com/?DataBusPattern">http://wiki.c2.com/?DataBusPattern</a>
3938
* <p>The Data-Bus pattern provides a method where different parts of an application may
4039
* pass messages between each other without needing to be aware of the other's existence.</p>

data-bus/src/main/java/com/iluwatar/databus/DataBus.java

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
*
3333
* <p>This implementation uses a Singleton.</p>
3434
*
35-
* @author Paul Campbell ([email protected])
3635
*/
3736
public class DataBus {
3837

data-bus/src/main/java/com/iluwatar/databus/DataType.java

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ of this software and associated documentation files (the "Software"), to deal
5151
/**
5252
* Events are sent via the Data-Bus.
5353
*
54-
* @author Paul Campbell ([email protected])
5554
*/
5655

5756
public interface DataType {

data-bus/src/main/java/com/iluwatar/databus/Member.java

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ of this software and associated documentation files (the "Software"), to deal
5353
/**
5454
* Members receive events from the Data-Bus.
5555
*
56-
* @author Paul Campbell ([email protected])
5756
*/
5857
public interface Member extends Consumer<DataType> {
5958

data-bus/src/main/java/com/iluwatar/databus/data/MessageData.java

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
/**
3333
* An event raised when a string message is sent.
3434
*
35-
* @author Paul Campbell ([email protected])
3635
*/
3736
@Getter
3837
@AllArgsConstructor

data-bus/src/main/java/com/iluwatar/databus/data/StartingData.java

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
/**
3434
* An event raised when applications starts, containing the start time of the application.
3535
*
36-
* @author Paul Campbell ([email protected])
3736
*/
3837
@RequiredArgsConstructor
3938
@Getter

data-bus/src/main/java/com/iluwatar/databus/data/StoppingData.java

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
/**
3434
* An event raised when applications stops, containing the stop time of the application.
3535
*
36-
* @author Paul Campbell ([email protected])
3736
*/
3837
@RequiredArgsConstructor
3938
@Getter

data-bus/src/main/java/com/iluwatar/databus/members/MessageCollectorMember.java

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
/**
3535
* Receiver of Data-Bus events that collects the messages from each {@link MessageData}.
3636
*
37-
* @author Paul Campbell ([email protected])
3837
*/
3938
@Slf4j
4039
public class MessageCollectorMember implements Member {

data-bus/src/main/java/com/iluwatar/databus/members/StatusMember.java

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
/**
3838
* Receiver of Data-Bus events.
3939
*
40-
* @author Paul Campbell ([email protected])
4140
*/
4241
@Getter
4342
@Slf4j

data-bus/src/test/java/com/iluwatar/databus/DataBusTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
/**
3636
* Tests for {@link DataBus}.
3737
*
38-
* @author Paul Campbell ([email protected])
3938
*/
4039
class DataBusTest {
4140

data-bus/src/test/java/com/iluwatar/databus/members/MessageCollectorMemberTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
/**
3636
* Tests for {@link MessageCollectorMember}.
3737
*
38-
* @author Paul Campbell ([email protected])
3938
*/
4039
class MessageCollectorMemberTest {
4140

data-bus/src/test/java/com/iluwatar/databus/members/StatusMemberTest.java

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
/**
3939
* Tests for {@link StatusMember}.
4040
*
41-
* @author Paul Campbell ([email protected])
4241
*/
4342
class StatusMemberTest {
4443

data-mapper/src/main/java/com/iluwatar/datamapper/DataMapperException.java

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* Using Runtime Exception for avoiding dependency on implementation exceptions. This helps in
3131
* decoupling.
3232
*
33-
* @author amit.dixit
3433
*/
3534
public final class DataMapperException extends RuntimeException {
3635

dependency-injection/src/test/java/com/iluwatar/dependency/injection/AdvancedSorceressTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434

3535

3636
/**
37-
* Date: 28/04/17 - 7:40 AM
37+
* AdvancedSorceressTest
3838
*
39-
* @author Stanislav Kapinus
4039
*/
4140

4241
class AdvancedSorceressTest {

dependency-injection/src/test/java/com/iluwatar/dependency/injection/AdvancedWizardTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434

3535

3636
/**
37-
* Date: 12/10/15 - 8:40 PM
37+
* AdvancedWizardTest
3838
*
39-
* @author Jeroen Meulemeester
4039
*/
4140
class AdvancedWizardTest {
4241

dependency-injection/src/test/java/com/iluwatar/dependency/injection/GuiceWizardTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@
3535
import org.junit.jupiter.api.Test;
3636

3737
/**
38-
* Date: 12/10/15 - 8:57 PM
38+
* GuiceWizardTest
3939
*
40-
* @author Jeroen Meulemeester
4140
*/
4241
class GuiceWizardTest {
4342

dependency-injection/src/test/java/com/iluwatar/dependency/injection/SimpleWizardTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232
import org.junit.jupiter.api.Test;
3333

3434
/**
35-
* Date: 12/10/15 - 8:26 PM
35+
* SimpleWizardTest
3636
*
37-
* @author Jeroen Meulemeester
3837
*/
3938
class SimpleWizardTest {
4039

dirty-flag/src/main/java/com/iluwatar/dirtyflag/DataFetcher.java

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
/**
3636
* A mock database manager -- Fetches data from a raw file.
3737
*
38-
* @author swaisuan
3938
*/
4039
@Slf4j
4140
public class DataFetcher {

dirty-flag/src/main/java/com/iluwatar/dirtyflag/World.java

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
/**
3131
* A middle-layer app that calls/passes along data from the back-end.
3232
*
33-
* @author swaisuan
3433
*/
3534
public class World {
3635

double-checked-locking/src/test/java/com/iluwatar/doublechecked/locking/InventoryTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,8 @@
4444
import org.slf4j.LoggerFactory;
4545

4646
/**
47-
* Date: 12/10/15 - 9:34 PM
47+
* InventoryTest
4848
*
49-
* @author Jeroen Meulemeester
5049
*/
5150
class InventoryTest {
5251

double-dispatch/src/test/java/com/iluwatar/doubledispatch/CollisionTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@
2929
import java.util.Objects;
3030

3131
/**
32-
* Date: 12/10/15 - 8:37 PM Test for Collision
32+
* CollisionTest
3333
*
3434
* @param <O> Type of GameObject
35-
* @author Jeroen Meulemeester
3635
*/
3736
public abstract class CollisionTest<O extends GameObject> {
3837

double-dispatch/src/test/java/com/iluwatar/doubledispatch/FlamingAsteroidTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131
import org.junit.jupiter.api.Test;
3232

3333
/**
34-
* Date: 12/10/15 - 11:31 PM
34+
* FlamingAsteroidTest
3535
*
36-
* @author Jeroen Meulemeester
3736
*/
3837
class FlamingAsteroidTest extends CollisionTest<FlamingAsteroid> {
3938

double-dispatch/src/test/java/com/iluwatar/doubledispatch/MeteoroidTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
import org.junit.jupiter.api.Test;
3131

3232
/**
33-
* Date: 12/10/15 - 11:31 PM
33+
* MeteoroidTest
3434
*
35-
* @author Jeroen Meulemeester
3635
*/
3736
class MeteoroidTest extends CollisionTest<Meteoroid> {
3837

double-dispatch/src/test/java/com/iluwatar/doubledispatch/SpaceStationIssTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
import org.junit.jupiter.api.Test;
3131

3232
/**
33-
* Date: 12/10/15 - 11:31 PM
33+
* SpaceStationIssTest
3434
*
35-
* @author Jeroen Meulemeester
3635
*/
3736
class SpaceStationIssTest extends CollisionTest<SpaceStationIss> {
3837

double-dispatch/src/test/java/com/iluwatar/doubledispatch/SpaceStationMirTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
import org.junit.jupiter.api.Test;
3131

3232
/**
33-
* Date: 12/10/15 - 11:31 PM
33+
* SpaceStationMirTest
3434
*
35-
* @author Jeroen Meulemeester
3635
*/
3736
class SpaceStationMirTest extends CollisionTest<SpaceStationMir> {
3837

event-aggregator/src/test/java/com/iluwatar/event/aggregator/EventEmitterTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,9 @@
3636
import org.junit.jupiter.api.Test;
3737

3838
/**
39-
* Date: 12/12/15 - 10:58 PM Tests for Event Emitter
39+
* Tests for Event Emitter
4040
*
4141
* @param <E> Type of Event Emitter
42-
* @author Jeroen Meulemeester
4342
*/
4443
abstract class EventEmitterTest<E extends EventEmitter> {
4544

event-aggregator/src/test/java/com/iluwatar/event/aggregator/EventTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131
import org.junit.jupiter.api.Test;
3232

3333
/**
34-
* Date: 12/12/15 - 2:52 PM
34+
* EventTest
3535
*
36-
* @author Jeroen Meulemeester
3736
*/
3837
class EventTest {
3938

event-aggregator/src/test/java/com/iluwatar/event/aggregator/KingJoffreyTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@
3838
import org.slf4j.LoggerFactory;
3939

4040
/**
41-
* Date: 12/12/15 - 3:04 PM
41+
* KingJoffreyTest
4242
*
43-
* @author Jeroen Meulemeester
4443
*/
4544
class KingJoffreyTest {
4645

event-aggregator/src/test/java/com/iluwatar/event/aggregator/KingsHandTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
import org.junit.jupiter.api.Test;
3535

3636
/**
37-
* Date: 12/12/15 - 10:57 AM
37+
* KingsHandTest
3838
*
39-
* @author Jeroen Meulemeester
4039
*/
4140
class KingsHandTest extends EventEmitterTest<KingsHand> {
4241

event-aggregator/src/test/java/com/iluwatar/event/aggregator/LordBaelishTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
package com.iluwatar.event.aggregator;
2626

2727
/**
28-
* Date: 12/12/15 - 10:57 AM
28+
* LordBaelishTest
2929
*
30-
* @author Jeroen Meulemeester
3130
*/
3231
class LordBaelishTest extends EventEmitterTest<LordBaelish> {
3332

event-aggregator/src/test/java/com/iluwatar/event/aggregator/LordVarysTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
package com.iluwatar.event.aggregator;
2626

2727
/**
28-
* Date: 12/12/15 - 10:57 AM
28+
* LordVarysTest
2929
*
30-
* @author Jeroen Meulemeester
3130
*/
3231
class LordVarysTest extends EventEmitterTest<LordVarys> {
3332

event-aggregator/src/test/java/com/iluwatar/event/aggregator/ScoutTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
package com.iluwatar.event.aggregator;
2626

2727
/**
28-
* Date: 12/12/15 - 10:57 AM
28+
* ScoutTest
2929
*
30-
* @author Jeroen Meulemeester
3130
*/
3231
class ScoutTest extends EventEmitterTest<Scout> {
3332

event-aggregator/src/test/java/com/iluwatar/event/aggregator/WeekdayTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131
import org.junit.jupiter.api.Test;
3232

3333
/**
34-
* Date: 12/12/15 - 2:12 PM
34+
* WeekdayTest
3535
*
36-
* @author Jeroen Meulemeester
3736
*/
3837
class WeekdayTest {
3938

event-queue/src/main/java/com/iluwatar/event/queue/Audio.java

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
/**
3737
* This class implements the Event Queue pattern.
3838
*
39-
* @author mkuprivecz
4039
*/
4140
@Slf4j
4241
public class Audio {

event-queue/src/main/java/com/iluwatar/event/queue/PlayMessage.java

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
/**
3333
* The Event Queue's queue will store the instances of this class.
3434
*
35-
* @author mkuprivecz
3635
*/
3736
@Getter
3837
@AllArgsConstructor

0 commit comments

Comments
 (0)