Skip to content

Commit

Permalink
refactor: sanitize javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
iluwatar committed May 23, 2024
1 parent 7273c24 commit 8389456
Show file tree
Hide file tree
Showing 204 changed files with 127 additions and 337 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@
import org.mockito.MockitoAnnotations;

/**
* Date: 12/6/15 - 10:49 AM
* ThreadAsyncExecutorTest
*
* @author Jeroen Meulemeester
*/
class ThreadAsyncExecutorTest {

Expand Down
3 changes: 1 addition & 2 deletions builder/src/test/java/com/iluwatar/builder/HeroTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/6/15 - 11:01 PM
* HeroTest
*
* @author Jeroen Meulemeester
*/
class HeroTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/6/15 - 9:29 PM
* OrcKingTest
*
* @author Jeroen Meulemeester
*/
class OrcKingTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/11/15 - 8:12 PM
* MessengerTest
*
* @author Jeroen Meulemeester
*/
class MessengerTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@
import static org.junit.jupiter.api.Assertions.assertNull;

/**
* Date: 10/24/2022 - 3:18
* ServiceContextTest
*
* @author Chak Chan
*/
public class ServiceContextTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ of this software and associated documentation files (the "Software"), to deal
/**
* Base for data to send via the Data-Bus.
*
* @author Paul Campbell ([email protected])
*/
@Getter
@Setter
Expand Down
1 change: 0 additions & 1 deletion data-bus/src/main/java/com/iluwatar/databus/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
/**
* The Data Bus pattern.
*
* @author Paul Campbell ([email protected])
* @see <a href="http://wiki.c2.com/?DataBusPattern">http://wiki.c2.com/?DataBusPattern</a>
* <p>The Data-Bus pattern provides a method where different parts of an application may
* pass messages between each other without needing to be aware of the other's existence.</p>
Expand Down
1 change: 0 additions & 1 deletion data-bus/src/main/java/com/iluwatar/databus/DataBus.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
*
* <p>This implementation uses a Singleton.</p>
*
* @author Paul Campbell ([email protected])
*/
public class DataBus {

Expand Down
1 change: 0 additions & 1 deletion data-bus/src/main/java/com/iluwatar/databus/DataType.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ of this software and associated documentation files (the "Software"), to deal
/**
* Events are sent via the Data-Bus.
*
* @author Paul Campbell ([email protected])
*/

public interface DataType {
Expand Down
1 change: 0 additions & 1 deletion data-bus/src/main/java/com/iluwatar/databus/Member.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ of this software and associated documentation files (the "Software"), to deal
/**
* Members receive events from the Data-Bus.
*
* @author Paul Campbell ([email protected])
*/
public interface Member extends Consumer<DataType> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
/**
* An event raised when a string message is sent.
*
* @author Paul Campbell ([email protected])
*/
@Getter
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
/**
* An event raised when applications starts, containing the start time of the application.
*
* @author Paul Campbell ([email protected])
*/
@RequiredArgsConstructor
@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
/**
* An event raised when applications stops, containing the stop time of the application.
*
* @author Paul Campbell ([email protected])
*/
@RequiredArgsConstructor
@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
/**
* Receiver of Data-Bus events that collects the messages from each {@link MessageData}.
*
* @author Paul Campbell ([email protected])
*/
@Slf4j
public class MessageCollectorMember implements Member {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
/**
* Receiver of Data-Bus events.
*
* @author Paul Campbell ([email protected])
*/
@Getter
@Slf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
/**
* Tests for {@link DataBus}.
*
* @author Paul Campbell ([email protected])
*/
class DataBusTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
/**
* Tests for {@link MessageCollectorMember}.
*
* @author Paul Campbell ([email protected])
*/
class MessageCollectorMemberTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
/**
* Tests for {@link StatusMember}.
*
* @author Paul Campbell ([email protected])
*/
class StatusMemberTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* Using Runtime Exception for avoiding dependency on implementation exceptions. This helps in
* decoupling.
*
* @author amit.dixit
*/
public final class DataMapperException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@


/**
* Date: 28/04/17 - 7:40 AM
* AdvancedSorceressTest
*
* @author Stanislav Kapinus
*/

class AdvancedSorceressTest {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@


/**
* Date: 12/10/15 - 8:40 PM
* AdvancedWizardTest
*
* @author Jeroen Meulemeester
*/
class AdvancedWizardTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/10/15 - 8:57 PM
* GuiceWizardTest
*
* @author Jeroen Meulemeester
*/
class GuiceWizardTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/10/15 - 8:26 PM
* SimpleWizardTest
*
* @author Jeroen Meulemeester
*/
class SimpleWizardTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
/**
* A mock database manager -- Fetches data from a raw file.
*
* @author swaisuan
*/
@Slf4j
public class DataFetcher {
Expand Down
1 change: 0 additions & 1 deletion dirty-flag/src/main/java/com/iluwatar/dirtyflag/World.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
/**
* A middle-layer app that calls/passes along data from the back-end.
*
* @author swaisuan
*/
public class World {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@
import org.slf4j.LoggerFactory;

/**
* Date: 12/10/15 - 9:34 PM
* InventoryTest
*
* @author Jeroen Meulemeester
*/
class InventoryTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@
import java.util.Objects;

/**
* Date: 12/10/15 - 8:37 PM Test for Collision
* CollisionTest
*
* @param <O> Type of GameObject
* @author Jeroen Meulemeester
*/
public abstract class CollisionTest<O extends GameObject> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/10/15 - 11:31 PM
* FlamingAsteroidTest
*
* @author Jeroen Meulemeester
*/
class FlamingAsteroidTest extends CollisionTest<FlamingAsteroid> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/10/15 - 11:31 PM
* MeteoroidTest
*
* @author Jeroen Meulemeester
*/
class MeteoroidTest extends CollisionTest<Meteoroid> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/10/15 - 11:31 PM
* SpaceStationIssTest
*
* @author Jeroen Meulemeester
*/
class SpaceStationIssTest extends CollisionTest<SpaceStationIss> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/10/15 - 11:31 PM
* SpaceStationMirTest
*
* @author Jeroen Meulemeester
*/
class SpaceStationMirTest extends CollisionTest<SpaceStationMir> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/12/15 - 10:58 PM Tests for Event Emitter
* Tests for Event Emitter
*
* @param <E> Type of Event Emitter
* @author Jeroen Meulemeester
*/
abstract class EventEmitterTest<E extends EventEmitter> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/12/15 - 2:52 PM
* EventTest
*
* @author Jeroen Meulemeester
*/
class EventTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@
import org.slf4j.LoggerFactory;

/**
* Date: 12/12/15 - 3:04 PM
* KingJoffreyTest
*
* @author Jeroen Meulemeester
*/
class KingJoffreyTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/12/15 - 10:57 AM
* KingsHandTest
*
* @author Jeroen Meulemeester
*/
class KingsHandTest extends EventEmitterTest<KingsHand> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@
package com.iluwatar.event.aggregator;

/**
* Date: 12/12/15 - 10:57 AM
* LordBaelishTest
*
* @author Jeroen Meulemeester
*/
class LordBaelishTest extends EventEmitterTest<LordBaelish> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@
package com.iluwatar.event.aggregator;

/**
* Date: 12/12/15 - 10:57 AM
* LordVarysTest
*
* @author Jeroen Meulemeester
*/
class LordVarysTest extends EventEmitterTest<LordVarys> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@
package com.iluwatar.event.aggregator;

/**
* Date: 12/12/15 - 10:57 AM
* ScoutTest
*
* @author Jeroen Meulemeester
*/
class ScoutTest extends EventEmitterTest<Scout> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@
import org.junit.jupiter.api.Test;

/**
* Date: 12/12/15 - 2:12 PM
* WeekdayTest
*
* @author Jeroen Meulemeester
*/
class WeekdayTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
/**
* This class implements the Event Queue pattern.
*
* @author mkuprivecz
*/
@Slf4j
public class Audio {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
/**
* The Event Queue's queue will store the instances of this class.
*
* @author mkuprivecz
*/
@Getter
@AllArgsConstructor
Expand Down
Loading

0 comments on commit 8389456

Please sign in to comment.