summaryrefslogtreecommitdiff
path: root/gnu/java/net/protocol/http/Connection.java
diff options
context:
space:
mode:
authorDavid Jee <djee@redhat.com>2004-01-12 22:08:54 +0000
committerDavid Jee <djee@redhat.com>2004-01-12 22:08:54 +0000
commit4cbcc7d1360b14f6238a459996cf033a8dfce518 (patch)
tree183873864c890bfad79602056e9a695fd233abd1 /gnu/java/net/protocol/http/Connection.java
parente0027e8af5a30e1f00a0886b27f5e47ee3bcc5e9 (diff)
downloadclasspath-4cbcc7d1360b14f6238a459996cf033a8dfce518.tar.gz
2004-01-12 David Jee <djee@redhat.com>
* 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.
Diffstat (limited to 'gnu/java/net/protocol/http/Connection.java')
-rw-r--r--gnu/java/net/protocol/http/Connection.java2
1 files changed, 1 insertions, 1 deletions
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.