[banshee] Database: no need to mark LikelihoodSupport property as public



commit 407a17788a4f32d85921b3b2841a88a5e9a662be
Author: Andrés G. Aragoneses <knocte gmail com>
Date:   Fri Dec 12 17:28:49 2014 +0100

    Database: no need to mark LikelihoodSupport property as public
    
    This property, introduced in the previous commit, is only used
    in the Banshee.Services assembly, so it can be changed to internal.

 .../Banshee.Database/BansheeDbConnection.cs        |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs 
b/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs
index 9d4caf3..4434eeb 100644
--- a/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs
+++ b/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs
@@ -53,7 +53,7 @@ namespace Banshee.Database
         }
 
         private bool? likelihood_support = null;
-        public bool LikelihoodSupport {
+        internal bool LikelihoodSupport {
             get {
                 if (!likelihood_support.HasValue) {
                     likelihood_support = Query<bool> ("SELECT sqlite_version () >= '3.8.1'");


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