/p2o_miami_2022_ignition-7.java Secret
Created
February 6, 2023 16:55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected DeserializationHandler lookupHandler(String name) { | |
DeserializationHandler handler = this.instanceHandlers.get(name); | |
if (handler == null) { | |
handler = staticHandlers.get(name); // [1] | |
} | |
return handler; | |
} | |
private static void addStaticHandler(DeserializationHandler handler) { | |
staticHandlers.put(handler.getElementName(), handler); // [2] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment