Skip to content

Commit

Permalink
Merge pull request #1 from shyiko/master
Browse files Browse the repository at this point in the history
Merge shyiko
  • Loading branch information
chenyun committed Mar 31, 2015
2 parents 4d437bd + fa49dd2 commit 07ae15e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.shyiko</groupId>
<artifactId>mysql-binlog-connector-java</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.4-SNAPSHOT</version>

<name>mysql-binlog-connector-java</name>
<description>MySQL Binary Log connector</description>
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Get the latest JAR(s) from [here](http://search.maven.org/#search%7Cga%7C1%7Cg%3
<dependency>
<groupId>com.github.shyiko</groupId>
<artifactId>mysql-binlog-connector-java</artifactId>
<version>0.1.2</version>
<version>0.1.3</version>
</dependency>
```

Expand All @@ -32,7 +32,7 @@ The latest development version always available through Sonatype Snapshots repos
<dependency>
<groupId>com.github.shyiko</groupId>
<artifactId>mysql-binlog-connector-java</artifactId>
<version>0.1.3-SNAPSHOT</version>
<version>0.1.4-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public BitSet readBitSet(int length, boolean bigEndian) throws IOException {
}

private byte[] reverse(byte[] bytes) {
for (int i = 0, length = bytes.length >> 2; i <= length; i++) {
for (int i = 0, length = bytes.length >> 1; i < length; i++) {
int j = bytes.length - 1 - i;
byte t = bytes[i];
bytes[i] = bytes[j];
Expand Down

0 comments on commit 07ae15e

Please # to comment.