- Timestamp:
- 07/02/13 11:50:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main/java/omq/common/util/Serializers/GsonImp.java
r72 r75 33 33 String id = jsonObj.get("id").getAsString(); 34 34 String method = jsonObj.get("method").getAsString(); 35 boolean async = jsonObj.get("async").getAsBoolean(); 35 36 36 37 List<Class<?>> types = obj.getParams(method); … … 48 49 i++; 49 50 } 50 51 return new Request(id, method, arguments); 51 return new Request(id, method, async, arguments); 52 52 } catch (NullPointerException e) { 53 return new Request(id, method, null);53 return new Request(id, method, async, null); 54 54 } 55 55 }
Note: See TracChangeset
for help on using the changeset viewer.