X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=svjatoslav_commons.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fcommons%2Fdata%2FEnhancedDataOutputStream.java;h=c84d2dab7fb50a80bf857b097155e4664ab9999d;hp=2476bbc2c0f2fd07e73f14efdac53134f27b647e;hb=b8bd1e820265fc15c39c1ee8c06289ea8b8e2c1c;hpb=950e3080cac96cd9167745cb18830e53418d1795 diff --git a/src/main/java/eu/svjatoslav/commons/data/EnhancedDataOutputStream.java b/src/main/java/eu/svjatoslav/commons/data/EnhancedDataOutputStream.java old mode 100644 new mode 100755 index 2476bbc..c84d2da --- a/src/main/java/eu/svjatoslav/commons/data/EnhancedDataOutputStream.java +++ b/src/main/java/eu/svjatoslav/commons/data/EnhancedDataOutputStream.java @@ -1,10 +1,10 @@ /* * Svjatoslav Commons - shared library of common functionality. - * Copyright ©2012-2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * Copyright ©2012-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public License - * as published by the Free Software Foundation. + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. */ package eu.svjatoslav.commons.data; @@ -16,27 +16,27 @@ import java.util.List; public class EnhancedDataOutputStream extends DataOutputStream { - public EnhancedDataOutputStream(final OutputStream out) { - super(out); - } + public EnhancedDataOutputStream(final OutputStream out) { + super(out); + } - public void writeIntegerList(final List list) throws IOException { - writeInt(list.size()); + public void writeIntegerList(final List list) throws IOException { + writeInt(list.size()); - for (final Integer integer : list) - writeInt(integer); - } + for (final Integer integer : list) + writeInt(integer); + } - public void writeString(final String string) throws IOException { - if (string == null) { - writeInt(-1); - return; - } + public void writeString(final String string) throws IOException { + if (string == null) { + writeInt(-1); + return; + } - final byte[] bytes = string.getBytes("UTF-8"); + final byte[] bytes = string.getBytes("UTF-8"); - writeInt(bytes.length); - write(bytes); - } + writeInt(bytes.length); + write(bytes); + } }