Skip to content
Commits on Source (4)
wildfly-common (1.3.2-1) unstable; urgency=medium
* New upstream version 1.3.2.
* Declare compliance with Debian Policy 4.1.4.
-- Markus Koschany <apo@debian.org> Fri, 04 May 2018 12:41:16 +0200
wildfly-common (1.3.1-1) unstable; urgency=medium
* New upstream version 1.3.1.
......
......@@ -14,7 +14,7 @@ Build-Depends:
libmaven-enforcer-plugin-java,
libtomcat8-java,
maven-debian-helper (>= 2.1)
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Git: https://anonscm.debian.org/git/pkg-java/wildfly-common.git
Vcs-Browser: https://anonscm.debian.org/git/pkg-java/wildfly-common.git
Homepage: http://wildfly.org/
......
......@@ -25,7 +25,7 @@
<groupId>org.wildfly.common</groupId>
<artifactId>wildfly-common</artifactId>
<version>1.3.1.Final</version>
<version>1.3.2.Final</version>
<parent>
<groupId>org.jboss</groupId>
......
......@@ -113,7 +113,7 @@ public abstract class ByteIterator implements BiDirIntIterator, IndexIterator {
}
public long getBE64() throws NoSuchElementException {
return (long)next() << 52 | (long)next() << 48 | (long)next() << 40 | (long)next() << 32 | (long)next() << 24 | (long)next() << 16 | (long)next() << 8 | (long)next();
return (long)next() << 56 | (long)next() << 48 | (long)next() << 40 | (long)next() << 32 | (long)next() << 24 | (long)next() << 16 | (long)next() << 8 | (long)next();
}
public int getLE16() throws NoSuchElementException {
......