You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertEquals(
XAException.XAER_PROTO,
xae.errorCode,
() -> "Prepare call on already prepared xid " + xid + " expects XAER_PROTO"// <-- this is Supplier<String> now
);
Note that compile-time string concatenation should be ignored.
It is fine to keep the message as is since the concatenation is performed at compile time, and there's no runtime overhead.
What problem are you trying to solve?
Sample input:
=>
Note that compile-time string concatenation should be ignored.
It is fine to keep the message as is since the concatenation is performed at compile time, and there's no runtime overhead.
The text was updated successfully, but these errors were encountered: