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 {
2727 implementation project(' :metafacture-javaintegration' )
2828 implementation " com.google.guava:guava:${ versions.guava} "
2929 implementation " org.slf4j:slf4j-api:${ versions.slf4j} "
30- implementation " org.slf4j:slf4j-api:${ versions.slf4j} "
3130 testRuntimeOnly " org.slf4j:slf4j-simple:${ versions.slf4j} "
3231 testImplementation " junit:junit:${ versions.junit} "
3332 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) {
5050 * Sets a URI escaper with the specified safe characters. The ranges 0..9, a..z and A..Z are always safe
5151 * and should not be specified.
5252 *
53- * @param safeChars
53+ * @param safeChars the chars which will not be escaped
5454 */
5555 public void setSafeChars (final String safeChars ) {
5656 this .safeChars = safeChars ;
Original file line number Diff line number Diff line change 977977 </documentation >
978978 </annotation >
979979 <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 >
980995 </complexType >
981996 </element >
982997
Original file line number Diff line number Diff line change 2020import org .junit .Test ;
2121
2222/**
23- * tests {@link ISBN }
23+ * Tests {@link URLEncode }
2424 *
2525 * @author Pascal Christoph (dr0i)
2626 */
You can’t perform that action at this time.
0 commit comments