Skip to content

Commit

Permalink
[#24] Remove print statement and fix capitalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Feb 3, 2025
1 parent face0df commit 7699db7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ See the [high-level unit tests](src/test/java/org/irods/irods4j/high_level) for

- IRODSDataObjectStream

## Low-level APIs
## Low-Level APIs

**IMPORTANT: Not all API operations are supported by the high-level APIs.**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ public MsParam_PI deserialize(JsonParser p, DeserializationContext ctxt) throws
p1.nextToken();
try {
var clazz = Class.forName("org.irods.irods4j.low_level.protocol.packing_instructions." + v.type);
System.out.println("Class.forName returned: " + clazz);
v.inOutStruct = ctxt.readValue(p1, clazz);
} catch (ClassNotFoundException e) {
throw new IOException(e);
Expand Down

0 comments on commit 7699db7

Please sign in to comment.