From 1e1aa704a2e50d8712878253eaf8ec3d3c4a15d9 Mon Sep 17 00:00:00 2001 From: linkmauve Date: Mon, 23 Oct 2017 15:10:15 +0100 Subject: Remove new from struct initialisation, as it is deprecated (#180) * Remove new from struct initialisation, as it is deprecated. * Use Map.has_key instead of Map.contains, as it is deprecated. --- xmpp-vala/src/module/xep/0082_date_time_profiles.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmpp-vala') diff --git a/xmpp-vala/src/module/xep/0082_date_time_profiles.vala b/xmpp-vala/src/module/xep/0082_date_time_profiles.vala index 8c7dffc1..b23dfe7a 100644 --- a/xmpp-vala/src/module/xep/0082_date_time_profiles.vala +++ b/xmpp-vala/src/module/xep/0082_date_time_profiles.vala @@ -1,7 +1,7 @@ namespace Xmpp.Xep.DateTimeProfiles { public DateTime? parse_string(string time_string) { - TimeVal time_val = new TimeVal(); + TimeVal time_val = TimeVal(); if (time_val.from_iso8601(time_string)) { return new DateTime.from_unix_utc(time_val.tv_sec); } -- cgit v1.2.3-54-g00ecf