Skip to content

Commit cffeaf0

Browse files
committed
Prepare for move to core package
1 parent caadf9a commit cffeaf0

File tree

10 files changed

+7
-183
lines changed

10 files changed

+7
-183
lines changed

main/java/net/b3e/mf/extra/source/FileTreeWalker.java

Lines changed: 0 additions & 142 deletions
This file was deleted.

main/resources/example/filedigest.flux

Lines changed: 0 additions & 5 deletions
This file was deleted.

main/resources/example/filetreewalker.flux

Lines changed: 0 additions & 5 deletions
This file was deleted.

main/resources/example/filter-duplicates.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

main/resources/example/find-duplicate-files.flux

Lines changed: 0 additions & 11 deletions
This file was deleted.

main/resources/flux-commands.properties

Lines changed: 0 additions & 3 deletions
This file was deleted.

main/java/net/b3e/mf/extra/pipe/FileDigestCalculator.java renamed to src/main/java/org/culturegraph/mf/stream/pipe/FileDigestCalculator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package net.b3e.mf.extra.pipe;
16+
package org.culturegraph.mf.stream.pipe;
1717

1818
import java.io.FileInputStream;
1919
import java.io.IOException;
2020
import java.io.InputStream;
2121
import java.security.MessageDigest;
2222

23-
import net.b3e.mf.extra.util.DigestAlgorithm;
2423

2524
import org.culturegraph.mf.exceptions.MetafactureException;
2625
import org.culturegraph.mf.framework.DefaultObjectPipe;
2726
import org.culturegraph.mf.framework.ObjectReceiver;
2827
import org.culturegraph.mf.framework.annotations.Description;
2928
import org.culturegraph.mf.framework.annotations.In;
3029
import org.culturegraph.mf.framework.annotations.Out;
30+
import org.culturegraph.mf.stream.util.DigestAlgorithm;
3131
import org.culturegraph.mf.types.Triple;
3232

3333
/**

main/java/net/b3e/mf/extra/pipe/TripleReorder.java renamed to src/main/java/org/culturegraph/mf/stream/pipe/TripleReorder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package net.b3e.mf.extra.pipe;
17+
package org.culturegraph.mf.stream.pipe;
1818

1919
import org.culturegraph.mf.framework.DefaultObjectPipe;
2020
import org.culturegraph.mf.framework.ObjectReceiver;

main/java/net/b3e/mf/extra/util/DigestAlgorithm.java renamed to src/main/java/org/culturegraph/mf/stream/util/DigestAlgorithm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package net.b3e.mf.extra.util;
17+
package org.culturegraph.mf.stream.util;
1818

1919
import java.security.MessageDigest;
2020
import java.security.NoSuchAlgorithmException;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
walk-filetree = org.culturegraph.mf.stream.source.FileTreeWalker
2+
digest-file = org.culturegraph.mf.stream.pipe.FileDigestCalculator
3+
reorder-triple = org.culturegraph.mf.stream.pipe.TripleReorder

0 commit comments

Comments
 (0)