fixed accidental change to byte array loop

master
Juergen Hoeller 14 years ago
parent fd159246ed
commit ace7b072f1
  1. 3
      org.springframework.web/src/main/java/org/springframework/web/util/UriUtils.java

@ -417,7 +417,8 @@ public abstract class UriUtils {
private static byte[] encode(byte[] source, BitSet notEncoded) { private static byte[] encode(byte[] source, BitSet notEncoded) {
Assert.notNull(source, "'source' must not be null"); Assert.notNull(source, "'source' must not be null");
ByteArrayOutputStream bos = new ByteArrayOutputStream(source.length * 2); ByteArrayOutputStream bos = new ByteArrayOutputStream(source.length * 2);
for (byte b : source) { for (int i = 0; i < source.length; i++) {
int b = source[i];
if (b < 0) { if (b < 0) {
b += 256; b += 256;
} }

Loading…
Cancel
Save