Skip to content

Commit f53a156

Browse files
committed
Fix javadoc for module "strings" (#396)
1 parent ef337bc commit f53a156

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

metafacture-strings/src/main/java/org/metafacture/strings/RegexDecoder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ public final class RegexDecoder extends DefaultObjectPipe<String, StreamReceiver
9393

9494
private String rawInputLiteral;
9595

96+
/**
97+
* Constructs a RegexDecoder with a given regex.
98+
*
99+
* @param regex the regex
100+
*/
96101
public RegexDecoder(final String regex) {
97102
matcher = Pattern.compile(regex).matcher("");
98103
captureGroupNames = collectCaptureGroupNames(regex);

0 commit comments

Comments
 (0)