Yuta HIGUCHI

Fix boxing/unboxing to parse a primitive

Change-Id: I83f6beac585f8b6b28a95080783e5ca51454fbfe
......@@ -70,7 +70,7 @@ public class IntentsWebResource extends AbstractWebResource {
Intent intent = get(IntentService.class).getIntent(Key.of(key, app));
if (intent == null) {
intent = get(IntentService.class)
.getIntent(Key.of(Long.valueOf(key), app));
.getIntent(Key.of(Long.parseLong(key), app));
}
nullIsNotFound(intent, INTENT_NOT_FOUND);
......