Skip to content

Commit 0931e1c

Browse files
committed
Remove email address from @author tags
ImageJ convention is to use only the name, without email address. The email address can be found in the pom.xml file and/or Git history. Philosophically, we really do not want to encourage anyone to email us directly about the code -- public communication channels are better. And pragmatically, putting the email address in source in an invitation for it to get out of sync.
1 parent 36f32e6 commit 0931e1c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/main/java/org/scijava/command/console/RunArgument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
*
4949
* @author Curtis Rueden
5050
* @author Johannes Schindelin
51-
* @author Mark Hiner hinerm at gmail.com
51+
* @author Mark Hiner
5252
*/
5353
@Plugin(type = ConsoleArgument.class)
5454
public class RunArgument extends AbstractConsoleArgument {

src/main/java/org/scijava/console/ConsoleUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
/**
4444
* Helper class for {@link ConsoleArgument}s.
4545
*
46-
* @author Mark Hiner hinerm at gmail.com
46+
* @author Mark Hiner
4747
*/
4848
public final class ConsoleUtils {
4949

src/main/java/org/scijava/console/HeadlessArgument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* and the enclosing {@link Context} will not be used after the
4343
* {@link ConsoleService} argument processing is complete.
4444
*
45-
* @author Mark Hiner hinerm at gmail.com
45+
* @author Mark Hiner
4646
*/
4747
@Plugin(type = ConsoleArgument.class)
4848
public class HeadlessArgument extends AbstractConsoleArgument {

src/main/java/org/scijava/convert/CastingConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/**
4040
* Minimal {@link Converter} implementation to do direct casting.
4141
*
42-
* @author Mark Hiner hinerm at gmail.com
42+
* @author Mark Hiner
4343
*/
4444
@Plugin(type = Converter.class, priority = Priority.FIRST_PRIORITY)
4545
public class CastingConverter extends AbstractConverter<Object, Object> {

src/main/java/org/scijava/script/console/RunScriptArgument.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
/**
4747
* {@link ConsoleArgument} for executing scripts directly.
4848
*
49-
* @author Mark Hiner hinerm at gmail.com
49+
* @author Mark Hiner
5050
*/
5151
@Plugin(type = ConsoleArgument.class)
5252
public class RunScriptArgument extends AbstractConsoleArgument {

0 commit comments

Comments
 (0)