Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
5.11.1
-
None
-
None
Description
The change made in AMQ-1584 changed how primitive classes are handled which is fine, but it got rid of the check for "void".
Just need to add a check to the end of the "loadSimpleType(String name)" method:
...
else if ("void".equals(name)) {
return void.class;
}
...