mirror of
https://github.com/valitydev/woody_java.git
synced 2024-11-06 08:15:21 +00:00
BJ-285: Increase ByteBuffer print length to 4096 (#32)
This commit is contained in:
parent
01ddd19a0a
commit
28a765a317
@ -1 +1 @@
|
||||
Subproject commit 8dd1d30e97e4db20c9da98a5ddb261b199402bc0
|
||||
Subproject commit f7fe66c9f3d4f37566a04c521b28aa168b7a88ec
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>woody</artifactId>
|
||||
<groupId>com.rbkmoney.woody</groupId>
|
||||
<version>1.1.12</version>
|
||||
<version>1.1.13</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -247,7 +247,7 @@ public final class TBaseHelper {
|
||||
int arrayOffset = bb.arrayOffset();
|
||||
int offset = arrayOffset + bb.position();
|
||||
int origLimit = arrayOffset + bb.limit();
|
||||
int limit = (origLimit - offset > 128) ? offset + 128 : origLimit;
|
||||
int limit = (origLimit - offset > 4096) ? offset + 4096 : origLimit;
|
||||
|
||||
for (int i = offset; i < limit; i++) {
|
||||
if (i > offset) {
|
||||
|
4
pom.xml
4
pom.xml
@ -12,7 +12,7 @@
|
||||
<packaging>pom</packaging>
|
||||
<groupId>com.rbkmoney.woody</groupId>
|
||||
<artifactId>woody</artifactId>
|
||||
<version>1.1.12</version>
|
||||
<version>1.1.13</version>
|
||||
|
||||
<description>Java implementation for Woody spec</description>
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.21</version>
|
||||
<version>1.7.25</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>woody</artifactId>
|
||||
<groupId>com.rbkmoney.woody</groupId>
|
||||
<version>1.1.12</version>
|
||||
<version>1.1.13</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<artifactId>woody</artifactId>
|
||||
<groupId>com.rbkmoney.woody</groupId>
|
||||
<version>1.1.12</version>
|
||||
<version>1.1.13</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user