From 37551dfc06880f6f829e541dc37c73c184eda815 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Mon, 11 Feb 2013 18:36:51 -0800 Subject: [PATCH] Probably don't want to throw an exeption in the DoubleCheck constructor. It'll never get called, but it would be sad if the server started sending things that crashed old clients --- .../com/todoroo/astrid/actfm/sync/messages/DoubleCheck.java | 1 - 1 file changed, 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/DoubleCheck.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/DoubleCheck.java index 42bc6ec9e..e5b0d7fdf 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/DoubleCheck.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/messages/DoubleCheck.java @@ -6,7 +6,6 @@ public class DoubleCheck extends ServerToClientMessage { public DoubleCheck(JSONObject json) { super(json); - throw new RuntimeException("No constructor for DoubleCheck implemented"); //$NON-NLS-1$ } @Override