Adds a resolver to the shared grape engine. @param args the resolver descriptor
(Map<String, Object> args)
| 384 | * @param args the resolver descriptor |
| 385 | */ |
| 386 | public static void addResolver(Map<String, Object> args) { |
| 387 | if (enableGrapes) { |
| 388 | GrapeEngine instance = getInstance(); |
| 389 | if (instance != null) { |
| 390 | instance.addResolver(args); |
| 391 | } |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | } |
no test coverage detected