[banshee] StreamTagger: Update a comment and fix code formatting



commit 4001a4cd6863abd0aa0391a498367e03c3f4890e
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Mon Dec 12 11:43:02 2011 +0100

    StreamTagger: Update a comment and fix code formatting
    
    No real code change.

 .../Banshee.Core/Banshee.Streaming/StreamTagger.cs |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs b/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
index 493b6a5..8e1817f 100644
--- a/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
+++ b/src/Core/Banshee.Core/Banshee.Streaming/StreamTagger.cs
@@ -152,7 +152,7 @@ namespace Banshee.Streaming
             // TODO support these as arrays:
             // Performers[] (track artists), AlbumArtists[], Composers[], Genres[]
 
-            // Note: this should be kept in sync with the metadata written in SaveTrackMetadataJob.cs
+            // Note: this should be kept in sync with the metadata written in the SaveToFile method
 
             if (file != null) {
                 track.Uri = new SafeUri (file.Name);
@@ -211,8 +211,8 @@ namespace Banshee.Streaming
 
             if (String.IsNullOrEmpty (track.TrackTitle)) {
                 try {
-                    string filename = System.Web.HttpUtility.UrlDecode
-			    (System.IO.Path.GetFileNameWithoutExtension (track.Uri.AbsoluteUri));
+                    string filename = System.Web.HttpUtility.UrlDecode (
+                        System.IO.Path.GetFileNameWithoutExtension (track.Uri.AbsoluteUri));
                     if (!String.IsNullOrEmpty (filename)) {
                         track.TrackTitle = filename;
                     }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]