Skip to content

Commit 4bf3a8a

Browse files
committed
Remove email addresses from author tags
Accomplished via: sed -i '' -e 's/\(@author .*\) [<(].*@.*[)>]\(.*\)$/\1\2/' $(git grep -l '@author') sed -i '' -e 's/\(@author .*\) &lt;.*@.*&gt;\(.*\)$/\1\2/' $(git grep -l '@author')
1 parent fbe3ff8 commit 4bf3a8a

Some content is hidden

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

49 files changed

+61
-61
lines changed

src/main/java/net/imglib2/algorithm/componenttree/Component.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* component (extremal region) can be obtained by {@link #value()}.
4747
*
4848
* @author Florian Jug
49-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
49+
* @author Tobias Pietzsch
5050
*/
5151
public interface Component< T, C extends Component< T, C > > extends Iterable< Localizable >
5252
{

src/main/java/net/imglib2/algorithm/componenttree/ComponentForest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* @param <C>
4343
* component type
4444
*
45-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
45+
* @author Tobias Pietzsch
4646
* @author Florian Jug
4747
*/
4848
public interface ComponentForest< C extends Component< ?, C > >

src/main/java/net/imglib2/algorithm/componenttree/ComponentTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* @param <C>
4141
* component type
4242
*
43-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
43+
* @author Tobias Pietzsch
4444
* @author Florian Jug
4545
*/
4646
public interface ComponentTree< C extends Component< ?, C > > extends ComponentForest< C >

src/main/java/net/imglib2/algorithm/dog/DifferenceOfGaussian.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
/**
5757
* Compute Difference-of-Gaussian of a {@link RandomAccessible}.
5858
*
59-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
59+
* @author Tobias Pietzsch
6060
*/
6161
public class DifferenceOfGaussian
6262
{

src/main/java/net/imglib2/algorithm/dog/DogDetection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
/**
5555
* @author Stephan Preibisch
56-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
56+
* @author Tobias Pietzsch
5757
*/
5858
public class DogDetection< T extends RealType< T > & NativeType< T > >
5959
{

src/main/java/net/imglib2/algorithm/edge/Edgel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* An oriented point representing a sub-pixel localized segment of a
4141
* (hyper-)edge.
4242
*
43-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
43+
* @author Tobias Pietzsch
4444
*/
4545
public class Edgel extends AbstractRealLocalizable
4646
{

src/main/java/net/imglib2/algorithm/edge/SubpixelEdgelDetection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* , RR 2724, INRIA, nov. 1995
6161
* </p>
6262
*
63-
* @author Tobias Pietzsch <tobias.pietzsch@gmail.com>
63+
* @author Tobias Pietzsch
6464
*/
6565
public class SubpixelEdgelDetection
6666
{

src/main/java/net/imglib2/algorithm/fill/Filter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
* Interface for comparing {@link T} t and {@link U} u and accepting
3939
* them as equivalent in a sense specified by implementation thereof.
4040
*
41-
* @author Philipp Hanslovsky &lt;hanslovskyp@janelia.hhmi.org&gt;
42-
* @author Stephan Saalfeld &lt;saalfelds@janelia.hhmi.org&gt;
41+
* @author Philipp Hanslovsky
42+
* @author Stephan Saalfeld
4343
*
4444
* @param <T>
4545
* @param <U>

src/main/java/net/imglib2/algorithm/fill/FloodFill.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
/**
5151
* Iterative n-dimensional flood fill for arbitrary neighborhoods.
5252
*
53-
* @author Philipp Hanslovsky &lt;hanslovskyp@janelia.hhmi.org&gt;
54-
* @author Stephan Saalfeld &lt;saalfelds@janelia.hhmi.org&gt;
53+
* @author Philipp Hanslovsky
54+
* @author Stephan Saalfeld
5555
*/
5656
public class FloodFill
5757
{

src/main/java/net/imglib2/algorithm/fill/TypeWriter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
/**
4040
* Default implementation of {@link Writer} for {@link Type}.
4141
*
42-
* @author Philipp Hanslovsky &lt;hanslovskyp@janelia.hhmi.org&gt;
43-
* @author Stephan Saalfeld &lt;saalfelds@janelia.hhmi.org&gt;
42+
* @author Philipp Hanslovsky
43+
* @author Stephan Saalfeld
4444
*/
4545
public class TypeWriter< T extends Type< T > > implements Writer< T >
4646
{

0 commit comments

Comments
 (0)