Skip to content

Commit 8af46ee

Browse files
committed
Tweak @author
1 parent bfb82d1 commit 8af46ee

5 files changed

Lines changed: 5 additions & 14 deletions

File tree

example-java/src/integrationTest/java/com/willmolloy/HelloJavaIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Integration tests for {@link HelloJava}.
99
*
10-
* @author <a href=https://willmolloy.com>Will Molloy</a>
10+
* @author Will
1111
*/
1212
class HelloJavaIntegrationTest {
1313

example-java/src/main/java/com/willmolloy/HelloJava.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Example main src.
88
*
9-
* @author <a href=https://willmolloy.com>Will Molloy</a>
9+
* @author Will
1010
*/
1111
class HelloJava {
1212
private static final Logger log = LogManager.getLogger();

example-java/src/test/java/com/willmolloy/HelloJavaTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Unit tests for {@link HelloJava}.
99
*
10-
* @author <a href=https://willmolloy.com>Will Molloy</a>
10+
* @author Will
1111
*/
1212
class HelloJavaTest {
1313

example-kotlin/src/main/kotlin/com/willmolloy/HelloKotlin.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
package com.willmolloy
22

3-
/**
4-
* Example main src.
5-
*
6-
* @author <a href=https://willmolloy.com>Will Molloy</a>
7-
*/
3+
/** Example main src. */
84
object HelloKotlin {
95

106
fun hello(text: String): String = "Hello $text, from Kotlin!"

example-scala/src/main/scala/com/willmolloy/HelloScala.scala

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
package com.willmolloy
22

3-
/**
4-
* Example main src.
5-
*
6-
* @author
7-
* <a href=https://willmolloy.com>Will Molloy</a>
8-
*/
3+
/** Example main src. */
94
object HelloScala {
105

116
def hello(text: String): String = s"Hello $text, from Scala!"

0 commit comments

Comments
 (0)