We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0a2989 commit c221ea6Copy full SHA for c221ea6
src/main/java/com/mastercard/developer/encryption/JsonParser.java
@@ -10,7 +10,7 @@
10
import java.util.Collection;
11
import java.util.Collections;
12
13
-final class JsonParser {
+public final class JsonParser {
14
15
private JsonParser() {
16
// Nothing to do here
@@ -24,7 +24,7 @@ private JsonParser() {
24
*
25
* @param jsonEngine A {@link com.mastercard.developer.json.JsonEngine} instance
26
*/
27
- static synchronized Configuration withJsonEngine(JsonEngine jsonEngine) {
+ public static synchronized Configuration withJsonEngine(JsonEngine jsonEngine) {
28
JsonParser.jsonEngine = jsonEngine;
29
JsonParser.jsonPathConfig = new Configuration.ConfigurationBuilder()
30
.jsonProvider(jsonEngine.getJsonProvider())
0 commit comments