diff --git a/core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java b/core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java
index 0b436f3cf..906a8e1f0 100644
--- a/core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java
+++ b/core/src/main/java/org/jivesoftware/smack/compression/Java7ZlibInputOutputStream.java
@@ -1,6 +1,6 @@
/**
*
- * Copyright 2013 Florian Schmaus
+ * Copyright 2013-2014 Florian Schmaus
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -27,14 +27,21 @@ import java.util.zip.Inflater;
import java.util.zip.InflaterInputStream;
/**
- * This class provides XMPP "zlib" compression with the help of the Deflater class of the Java API. Note that the method
- * needed is available since Java7, so it will only work with Java7 or higher (hence it's name).
+ * This class provides XMPP "zlib" compression with the help of the Deflater class of the Java API.
+ * Note that the method needed for compression with synchronous flush support is available since
+ * Java7, so it will only work with Java7 or higher (hence it's name). On Android, the required
+ * deflate()
method is available on API 19 or higher.
+ *
+ * See also: + *