Skip to content

Commit 2e16b8f

Browse files
author
anouri
committed
3rd party library guava upgraded to version 24.1.1-jre #139
1 parent c2ad700 commit 2e16b8f

4 files changed

Lines changed: 12 additions & 13 deletions

File tree

com.ibm.streamsx.hbase/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changes
22
=========
33

4+
## v3.9.2:
5+
* [#139](https://github.com/IBMStreams/streamsx.hbase/issues/139) 3rd party library guava upgraded to version 24.1.1-jre
6+
47
## v3.9.1:
58
* [#136](https://github.com/IBMStreams/streamsx.hbase/issues/136) 3rd party library commons-lang3 added
69

com.ibm.streamsx.hbase/impl/java/src/com/ibm/streamsx/hbase/HBASEScan.java

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ private static class ScanRegion implements Closeable {
131131
long rowsScanned;
132132
long outstandingRows;
133133

134+
@SuppressWarnings("deprecation")
134135
ScanRegion(HBASEScan operator, byte[] rawStartBytes, byte[] endBytes,
135136
byte[] lastRow) throws IOException {
136137
operator.logger.debug(Messages.getString("HBASE_SCAN_CREATING_REGION_SCAN", rawStartBytes, endBytes, lastRow));
@@ -722,16 +723,6 @@ public synchronized void initialize(OperatorContext context)
722723

723724
}
724725

725-
private String printBytes(byte[] endBytes) {
726-
StringBuffer buff = new StringBuffer();
727-
buff.append(".");
728-
for (byte b : endBytes) {
729-
buff.append(Byte.toString(b));
730-
buff.append(".");
731-
}
732-
return buff.toString();
733-
}
734-
735726

736727
private void createRegionQueue() throws IOException {
737728

@@ -896,6 +887,7 @@ public void processPunctuation(StreamingInput<Tuple> stream,
896887
}
897888
}
898889

890+
@SuppressWarnings("deprecation")
899891
@Override
900892
public void process(StreamingInput<Tuple> stream, Tuple tuple)
901893
throws Exception {

com.ibm.streamsx.hbase/info.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,12 @@ The jar library zookeeper-3.4.13.jar has been replaced with **zookeeper-3.4.6.ja
227227

228228
* 3rd party library commons-lang3 added
229229

230+
++ What is new in version 3.9.2
231+
232+
* 3rd party library guava upgraded to version 24.1.1-jre
233+
230234
</info:description>
231-
<info:version>3.9.1</info:version>
235+
<info:version>3.9.2</info:version>
232236
<info:requiredProductVersion>4.0.0.0</info:requiredProductVersion>
233237
</info:identity>
234238
<info:dependencies/>

com.ibm.streamsx.hbase/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<groupId>com.ibm.streamsx.hbase</groupId>
1212
<artifactId>streamsx.hbase</artifactId>
1313
<packaging>jar</packaging>
14-
<version>3.9.1</version>
14+
<version>3.9.2</version>
1515
<name>com.ibm.streamsx.hbase</name>
1616
<repositories>
1717
<repository>
@@ -194,7 +194,7 @@
194194
<dependency>
195195
<groupId>com.google.guava</groupId>
196196
<artifactId>guava</artifactId>
197-
<version>20.0</version>
197+
<version>24.1.1-jre</version>
198198
<exclusions>
199199
<exclusion>
200200
<groupId>*</groupId>

0 commit comments

Comments
 (0)