~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Core/PropertyService.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
                
113
113
                static bool LoadProperties (string fileName)
114
114
                {
 
115
                        LoggingService.Trace ("CorePropertyService", "Loading");
115
116
                        properties = null;
116
117
                        if (File.Exists (fileName)) {
117
118
                                try {
130
131
                                        LoggingService.LogError ("Error loading properties from backup file '{0}':\n{1}", backupFile, ex);
131
132
                                }
132
133
                        }
133
 
                        
 
134
                        LoggingService.Trace ("CorePropertyService", "Loaded");
134
135
                        return properties != null;
135
136
                }
136
137