Subversion Repositories pub

Compare Revisions

No changes between revisions

Ignore whitespace Rev 55 → Rev 56

/pluggablejs/trunk/src/net/outlyer/plugins/utils/Output.java
24,10 → 24,12
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
// $Id$
 
import java.io.PrintStream;
 
/**
* Provides a simplified wrapper for output
* Provides a simplified wrapper for output.
*/
public class Output {
 
41,6 → 43,10
this.ps = ps;
}
public void println() {
ps.println();
}
public void println(final String s) {
ps.println(s);
}
Property changes:
Added: svn:keywords
+Rev Id Date
\ No newline at end of property