Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2CE7410B6E for ; Fri, 17 Jan 2014 00:21:29 +0000 (UTC) Received: (qmail 53316 invoked by uid 500); 17 Jan 2014 00:21:28 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 53271 invoked by uid 500); 17 Jan 2014 00:21:27 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 53123 invoked by uid 99); 17 Jan 2014 00:21:26 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Jan 2014 00:21:26 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 66FFE52FDC; Fri, 17 Jan 2014 00:21:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: purplecabbage@apache.org To: commits@cordova.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: Debug.WriteLine output, not Console.WriteLine to avoid (possible) ambiguous reference. Clean up 'usings' Date: Fri, 17 Jan 2014 00:21:26 +0000 (UTC) Updated Branches: refs/heads/master 7ac24bfb0 -> c36ee3dc8 Debug.WriteLine output, not Console.WriteLine to avoid (possible) ambiguous reference. Clean up 'usings' Project: http://git-wip-us.apache.org/repos/asf/cordova-wp8/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-wp8/commit/c36ee3dc Tree: http://git-wip-us.apache.org/repos/asf/cordova-wp8/tree/c36ee3dc Diff: http://git-wip-us.apache.org/repos/asf/cordova-wp8/diff/c36ee3dc Branch: refs/heads/master Commit: c36ee3dc8c824ee8d4ed32c4d9d79e20790a72ef Parents: 7ac24bf Author: Jesse MacFadyen Authored: Thu Jan 16 16:19:38 2014 -0800 Committer: Jesse MacFadyen Committed: Thu Jan 16 16:20:52 2014 -0800 ---------------------------------------------------------------------- wp7/template/cordovalib/CordovaView.xaml.cs | 27 ++++++------------------ wp8/template/cordovalib/CordovaView.xaml.cs | 27 ++++++------------------ 2 files changed, 14 insertions(+), 40 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/c36ee3dc/wp7/template/cordovalib/CordovaView.xaml.cs ---------------------------------------------------------------------- diff --git a/wp7/template/cordovalib/CordovaView.xaml.cs b/wp7/template/cordovalib/CordovaView.xaml.cs index 14925f7..eb84d06 100644 --- a/wp7/template/cordovalib/CordovaView.xaml.cs +++ b/wp7/template/cordovalib/CordovaView.xaml.cs @@ -12,31 +12,18 @@ limitations under the License. */ +using Microsoft.Phone.Controls; +using Microsoft.Phone.Shell; using System; using System.Collections.Generic; +using System.ComponentModel; +using System.Diagnostics; +using System.IO; +using System.IO.IsolatedStorage; using System.Linq; -using System.Net; using System.Windows; using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; -using Microsoft.Phone.Controls; -using System.IO.IsolatedStorage; -using System.Windows.Resources; -using System.Windows.Interop; -using System.Runtime.Serialization.Json; -using System.IO; -using System.ComponentModel; -using System.Xml.Linq; -using WPCordovaClassLib.Cordova.Commands; -using System.Diagnostics; -using System.Text; using WPCordovaClassLib.Cordova; -using System.Threading; -using Microsoft.Phone.Shell; using WPCordovaClassLib.Cordova.JSON; using WPCordovaClassLib.CordovaLib; @@ -376,7 +363,7 @@ namespace WPCordovaClassLib } catch (Exception ex) { - Console.WriteLine("Exception while invoking backbutton into cordova view: " + ex.Message); + Debug.WriteLine("Exception while invoking backbutton into cordova view: " + ex.Message); } } else http://git-wip-us.apache.org/repos/asf/cordova-wp8/blob/c36ee3dc/wp8/template/cordovalib/CordovaView.xaml.cs ---------------------------------------------------------------------- diff --git a/wp8/template/cordovalib/CordovaView.xaml.cs b/wp8/template/cordovalib/CordovaView.xaml.cs index 72ed878..094290b 100644 --- a/wp8/template/cordovalib/CordovaView.xaml.cs +++ b/wp8/template/cordovalib/CordovaView.xaml.cs @@ -12,31 +12,18 @@ limitations under the License. */ +using Microsoft.Phone.Controls; +using Microsoft.Phone.Shell; using System; using System.Collections.Generic; +using System.ComponentModel; +using System.Diagnostics; +using System.IO; +using System.IO.IsolatedStorage; using System.Linq; -using System.Net; using System.Windows; using System.Windows.Controls; -using System.Windows.Documents; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Shapes; -using Microsoft.Phone.Controls; -using System.IO.IsolatedStorage; -using System.Windows.Resources; -using System.Windows.Interop; -using System.Runtime.Serialization.Json; -using System.IO; -using System.ComponentModel; -using System.Xml.Linq; -using WPCordovaClassLib.Cordova.Commands; -using System.Diagnostics; -using System.Text; using WPCordovaClassLib.Cordova; -using System.Threading; -using Microsoft.Phone.Shell; using WPCordovaClassLib.Cordova.JSON; using WPCordovaClassLib.CordovaLib; @@ -332,7 +319,7 @@ namespace WPCordovaClassLib } catch (Exception ex) { - Console.WriteLine("Exception while invoking backbutton into cordova view: " + ex.Message); + Debug.WriteLine("Exception while invoking backbutton into cordova view: " + ex.Message); } } else