Skip to content

Commit a072b45

Browse files
committed
Made one private serializer class public to allow for improved internal testing.
1 parent f207766 commit a072b45

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
The format is based on [Keep a Changelog](http://keepachangelog.com/).
44

5+
## Unreleased
6+
7+
### Changed
8+
- Made one private serializer class public to allow for improved internal testing.
9+
510
## [5.3.4] 2022-06-16
611

712
NOTE: there was briefly a 5.3.3 release available on GitHub. This release is functionally

driver/src/main/java/oracle/nosql/driver/ops/serde/PrepareRequestSerializer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
/**
2828
* Prepare a query
2929
*/
30-
class PrepareRequestSerializer extends BinaryProtocol implements Serializer {
30+
public class PrepareRequestSerializer extends BinaryProtocol
31+
implements Serializer {
3132

3233
@Override
3334
public void serialize(Request request,

0 commit comments

Comments
 (0)