Skip to content

Commit 734ed06

Browse files
Oleg ObolenskiyTotktonada
Oleg Obolenskiy
authored andcommitted
Change TarantoolException.isTransient access level
To be accessible from other packages TarantoolException.isTransient() became public.
1 parent 1f5c92d commit 734ed06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/tarantool/TarantoolException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public TarantoolException(long code, String message) {
5656
*
5757
* @return {@code true} if retry can possibly help to overcome this error.
5858
*/
59-
boolean isTransient() {
59+
public boolean isTransient() {
6060
switch ((int) code) {
6161
case ERR_READONLY:
6262
case ERR_TIMEOUT:

0 commit comments

Comments
 (0)