Skip to content

Commit 7b76af6

Browse files
committed
update author's email
1 parent 3ae66f3 commit 7b76af6

30 files changed

+31
-31
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2015, Mahmoud Ben Hassine (mahmoud@benhassine.fr)
3+
Copyright (c) 2016, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ You are welcome to improve existing components or add new ones to make the toolb
119119
```
120120
The MIT License
121121
122-
Copyright (c) 2015, Mahmoud Ben Hassine (mahmoud@benhassine.fr)
122+
Copyright (c) 2016, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
123123
124124
Permission is hereby granted, free of charge, to any person obtaining a copy
125125
of this software and associated documentation files (the "Software"), to deal

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
<developer>
4242
<id>benas</id>
4343
<name>Mahmoud Ben Hassine</name>
44-
<url>http://www.mahmoud-benhassine.fr</url>
45-
<email>mahmoud@benhassine.fr</email>
44+
<url>http://benas.github.io</url>
45+
<email>mahmoud.benhassine@icloud.com</email>
4646
</developer>
4747
</developers>
4848

src/main/java/io/github/benas/unixstream/Functions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* This class consists of {@code static} factory methods to create commons functions.
1010
*
11-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
11+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
1212
*/
1313
public class Functions {
1414

src/main/java/io/github/benas/unixstream/Predicates.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* This class consists of {@code static} factory methods to create commons predicates.
99
*
10-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
10+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
1111
*/
1212
public class Predicates {
1313

src/main/java/io/github/benas/unixstream/Stage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* @param <I> the type of input elements
1010
* @param <O> the type of output elements
11-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
11+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
1212
*/
1313
public interface Stage<I, O> {
1414

src/main/java/io/github/benas/unixstream/StandardInputSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Supplier that generates an infinite stream from the standard input.
1212
*
13-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
13+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
1414
*/
1515
class StandardInputSupplier implements Supplier<String> {
1616

src/main/java/io/github/benas/unixstream/UnixStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* It provides static methods to read/write streams and to operate on them the unix way.
1919
*
2020
* @param <T> type of elements in the stream.
21-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
21+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
2222
*/
2323
public interface UnixStream<T> extends Stream<T> {
2424

src/main/java/io/github/benas/unixstream/components/Compact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Remove all white spaces from a String.
1010
*
11-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
11+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
1212
*/
1313
public class Compact implements Stage<String, String> {
1414

src/main/java/io/github/benas/unixstream/components/Concat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Concat two streams.
1010
*
11-
* @author Mahmoud Ben Hassine (mahmoud@benhassine.fr)
11+
* @author Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com)
1212
*/
1313
public class Concat<T> implements Stage<T, T> {
1414

0 commit comments

Comments
 (0)