Skip to content

Commit

Permalink
Remove email address from @author Javadoc tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed Jun 30, 2023
1 parent c8f84db commit adff5aa
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/Decimal.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Abstract base class for IEEE-754 decimals.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public abstract class Decimal<T extends Decimal<T>> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/Decimal128.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* An IEEE-754 Decimal128.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public final class Decimal128 extends Decimal<Decimal128> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/Decimal32.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* An IEEE-754 Decimal32.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public final class Decimal32 extends Decimal<Decimal32> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/Decimal64.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* An IEEE-754 Decimal64.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public final class Decimal64 extends Decimal<Decimal64> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/DecimalCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Encodes and decodes decimal values.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
final class DecimalCodec<T extends Decimal<T>> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/DecimalFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* Factory for decimal values.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
interface DecimalFactory<T> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/DecimalFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* Constant values for the decimal 32, 64 and 128 formats.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
enum DecimalFormat {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* signalling NaN. In that situation, NaN should be returned.
* </p>
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public class DecimalInconvertibleException extends ArithmeticException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Exception thrown to indicate a coefficient or exponent overflow or underflow.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public final class DecimalOverflowException extends ArithmeticException {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/DecimalType.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Type of decimal.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public enum DecimalType {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* parameter ({@code firstDigit}).
* </p>
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public final class DenselyPackedDecimalCodec {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* value it can hold is {@code 9.999999e96}.
* </p>
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public enum OverflowHandling {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/firebirdsql/decimal/Signum.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Signum constants used in decimal-java
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public final class Signum {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Indirectly also tests {@link Decimal128#valueOf(BigDecimal)} and {@link Decimal128#toString()}.
* </p>
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
class Decimal128ValueOfTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Indirectly also tests {@link Decimal32#valueOf(BigDecimal)} and {@link Decimal32#toString()}.
* </p>
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
class Decimal32ValueOfTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Indirectly also tests {@link Decimal64#valueOf(BigDecimal)} and {@link Decimal64#toString()}.
* </p>
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
class Decimal64ValueOfTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* Test to check if the decimal constants match the specification.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
class DecimalFormatTest {

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/firebirdsql/decimal/ExamplesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Tests for the examples in README.md.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
class ExamplesTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* Generates a lookup table from DPD encoding of three digits to those three digits as characters.
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public class GenerateLookupTable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* Generates a lookup of DPD encoding of 3 digits in reverse order (unused for actual code).
*
* @author <a href="mailto:[email protected]">Mark Rotteveel</a>
* @author Mark Rotteveel
*/
public class GenerateReverseLookupTable {

Expand Down

0 comments on commit adff5aa

Please sign in to comment.