From 4cbcc7d1360b14f6238a459996cf033a8dfce518 Mon Sep 17 00:00:00 2001 From: David Jee Date: Mon, 12 Jan 2004 22:08:54 +0000 Subject: 2004-01-12 David Jee * gnu/java/net/protocol/http/Connection.java (sendRequest): Fix a small typo. * java/awt/Container.java (update): Clear only the clipped region, instead of clearing the entire Container. (visitChildren): Visit children in descending order. --- gnu/java/net/protocol/http/Connection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/java/net/protocol/http/Connection.java') diff --git a/gnu/java/net/protocol/http/Connection.java b/gnu/java/net/protocol/http/Connection.java index c5852eb1a..6cad7ab2a 100644 --- a/gnu/java/net/protocol/http/Connection.java +++ b/gnu/java/net/protocol/http/Connection.java @@ -225,7 +225,7 @@ public final class Connection extends HttpURLConnection setRequestProperty ("Content-type", "application/x-www-form-urlencoded"); // Set correct content length. - if (bufferedOutoutStream != null) + if (bufferedOutputStream != null) setRequestProperty ("Content-length", String.valueOf (bufferedOutputStream.size())); // Write all req_props name-value pairs to the output writer. -- cgit v1.2.1