diff --git a/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpErlangList.java b/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpErlangList.java index eca599f..8bce449 100644 --- a/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpErlangList.java +++ b/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpErlangList.java @@ -334,7 +334,9 @@ private Iterator iterator(final int start) { return new Itr(start); } - /** @return true if the list is proper, i.e. the last tail is nil */ + /** + * @return true if the list is proper, i.e. the last tail is nil + */ public boolean isProper() { return lastTail == null; } diff --git a/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpInputStream.java b/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpInputStream.java index 84fcbf1..332d7ed 100644 --- a/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpInputStream.java +++ b/eqwalizer/src/main/java/com/ericsson/otp/erlang/OtpInputStream.java @@ -41,7 +41,9 @@ public class OtpInputStream extends ByteArrayInputStream { private final int flags; - /** @param buf */ + /** + * @param buf + */ public OtpInputStream(final byte[] buf) { this(buf, 0); }