aboutsummaryrefslogtreecommitdiff
path: root/src/device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device.c')
-rw-r--r--src/device.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/device.c b/src/device.c
index 80b3208..4b983e9 100644
--- a/src/device.c
+++ b/src/device.c
@@ -173,10 +173,6 @@ get_property (GObject * o, guint prop_id, GValue * value, GParamSpec * pspec)
case PROP_TIME:
g_value_set_uint64 (value, priv->time);
break;
-
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (o, prop_id, pspec);
- break;
}
}
@@ -213,10 +209,6 @@ set_property (GObject * o, guint prop_id, const GValue * value, GParamSpec * psp
case PROP_TIME:
priv->time = g_value_get_uint64(value);
break;
-
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (o, prop_id, pspec);
- break;
}
}