Skip to content

Commit

Permalink
3rd party library guava upgraded to version 24.1.1-jre #139
Browse files Browse the repository at this point in the history
  • Loading branch information
anouri committed Oct 19, 2020
1 parent c2ad700 commit 2e16b8f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
3 changes: 3 additions & 0 deletions com.ibm.streamsx.hbase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changes
=========

## v3.9.2:
* [#139](https://github.com/IBMStreams/streamsx.hbase/issues/139) 3rd party library guava upgraded to version 24.1.1-jre

## v3.9.1:
* [#136](https://github.com/IBMStreams/streamsx.hbase/issues/136) 3rd party library commons-lang3 added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ private static class ScanRegion implements Closeable {
long rowsScanned;
long outstandingRows;

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

}

private String printBytes(byte[] endBytes) {
StringBuffer buff = new StringBuffer();
buff.append(".");
for (byte b : endBytes) {
buff.append(Byte.toString(b));
buff.append(".");
}
return buff.toString();
}


private void createRegionQueue() throws IOException {

Expand Down Expand Up @@ -896,6 +887,7 @@ public void processPunctuation(StreamingInput<Tuple> stream,
}
}

@SuppressWarnings("deprecation")
@Override
public void process(StreamingInput<Tuple> stream, Tuple tuple)
throws Exception {
Expand Down
6 changes: 5 additions & 1 deletion com.ibm.streamsx.hbase/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,12 @@ The jar library zookeeper-3.4.13.jar has been replaced with **zookeeper-3.4.6.ja

* 3rd party library commons-lang3 added

++ What is new in version 3.9.2

* 3rd party library guava upgraded to version 24.1.1-jre

</info:description>
<info:version>3.9.1</info:version>
<info:version>3.9.2</info:version>
<info:requiredProductVersion>4.0.0.0</info:requiredProductVersion>
</info:identity>
<info:dependencies/>
Expand Down
4 changes: 2 additions & 2 deletions com.ibm.streamsx.hbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>com.ibm.streamsx.hbase</groupId>
<artifactId>streamsx.hbase</artifactId>
<packaging>jar</packaging>
<version>3.9.1</version>
<version>3.9.2</version>
<name>com.ibm.streamsx.hbase</name>
<repositories>
<repository>
Expand Down Expand Up @@ -194,7 +194,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
<version>24.1.1-jre</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand Down

0 comments on commit 2e16b8f

Please sign in to comment.