File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed
java/org/metafacture/metamorph/functions
test/java/org/metafacture/metamorph/functions Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ dependencies {
27
27
implementation project(' :metafacture-javaintegration' )
28
28
implementation " com.google.guava:guava:${ versions.guava} "
29
29
implementation " org.slf4j:slf4j-api:${ versions.slf4j} "
30
- implementation " org.slf4j:slf4j-api:${ versions.slf4j} "
31
30
testRuntimeOnly " org.slf4j:slf4j-simple:${ versions.slf4j} "
32
31
testImplementation " junit:junit:${ versions.junit} "
33
32
testImplementation " org.mockito:mockito-core:${ versions.mockito} "
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public String process(final String value) {
50
50
* Sets a URI escaper with the specified safe characters. The ranges 0..9, a..z and A..Z are always safe
51
51
* and should not be specified.
52
52
*
53
- * @param safeChars
53
+ * @param safeChars the chars which will not be escaped
54
54
*/
55
55
public void setSafeChars (final String safeChars ) {
56
56
this .safeChars = safeChars ;
Original file line number Diff line number Diff line change 977
977
</documentation >
978
978
</annotation >
979
979
<complexType >
980
+ <attribute name =" safechars" type =" string" use =" optional" >
981
+ <annotation >
982
+ <documentation >Chars which will not be escaped. The ranges
983
+ 0..9, a..z and A..Z are always safe and should not be
984
+ specified.
985
+ </documentation >
986
+ </annotation >
987
+ </attribute >
988
+ <attribute name =" plusforspace" type =" boolean" use =" optional" default =" true" >
989
+ <annotation >
990
+ <documentation >Sets if a space should be converted into a
991
+ plus sign "+" or percent escaped as "%20".
992
+ </documentation >
993
+ </annotation >
994
+ </attribute >
980
995
</complexType >
981
996
</element >
982
997
Original file line number Diff line number Diff line change 20
20
import org .junit .Test ;
21
21
22
22
/**
23
- * tests {@link ISBN }
23
+ * Tests {@link URLEncode }
24
24
*
25
25
* @author Pascal Christoph (dr0i)
26
26
*/
You can’t perform that action at this time.
0 commit comments