From d88994e4ef1e71cd20231e3e1d2eda76ae008bea Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Wed, 19 Jan 2005 17:14:01 +0000 Subject: [PATCH] Minor javadoc. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277388 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/tools/ant/util/LazyFileOutputStream.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/util/LazyFileOutputStream.java b/src/main/org/apache/tools/ant/util/LazyFileOutputStream.java index f65750d8a..c26fdbbc8 100644 --- a/src/main/org/apache/tools/ant/util/LazyFileOutputStream.java +++ b/src/main/org/apache/tools/ant/util/LazyFileOutputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2003-2004 The Apache Software Foundation + * Copyright 2003-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -103,18 +103,20 @@ public class LazyFileOutputStream extends OutputStream { } /** - * Delegates to the three arg version. + * Delegates to the three-arg version. */ public void write(byte[] b) throws IOException { write(b, 0, b.length); } + //inherit doc public synchronized void write(byte[] b, int offset, int len) throws IOException { ensureOpened(); fos.write(b, offset, len); } + //inherit doc public synchronized void write(int b) throws IOException { ensureOpened(); fos.write(b);