Skip to content

Commit

Permalink
Fix crash on VS2015 Preview
Browse files Browse the repository at this point in the history
The Environment/TaskList section now throws NotImplementedException on
read
  • Loading branch information
SLaks committed Nov 20, 2014
1 parent e293b00 commit 016c49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rebracer/Services/SettingsPersister.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ bool IsPresent(SettingsSection section) {
try {
dte.Properties(section);
return true;
} catch (COMException) { return false; }
} catch (COMException) { return false; } catch (NotImplementedException) { return false; }
}

///<summary>Loads an existing settings file.</summary>
Expand Down

0 comments on commit 016c49f

Please sign in to comment.