Skip to content

Commit 5ac1606

Browse files
authored
Merge pull request #1 from David-Engel/setup
Various improvements
2 parents 9f05e05 + 18c3cc3 commit 5ac1606

6 files changed

+104
-421
lines changed

src/OutlookCalendarSync/AppointmentItemCache.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace OutlookCalendarSync
66
{
77
class AppointmentItemCache
88
{
9-
private Dictionary<AppointmentItem, AppointmentItemCacheEntry> _cache = new Dictionary<AppointmentItem, AppointmentItemCacheEntry>();
9+
private readonly Dictionary<AppointmentItem, AppointmentItemCacheEntry> _cache = new Dictionary<AppointmentItem, AppointmentItemCacheEntry>();
1010

1111
public AppointmentItemCache()
1212
{

src/OutlookCalendarSync/AppointmentItemCacheEntry.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ namespace OutlookCalendarSync
44
{
55
public class AppointmentItemCacheEntry
66
{
7-
private AppointmentItem _appointmentItem;
8-
private bool _isSyncItem = false;
9-
private string _fromAccount;
10-
private string _signature;
7+
private readonly AppointmentItem _appointmentItem;
8+
private readonly bool _isSyncItem = false;
9+
private readonly string _fromAccount;
10+
private readonly string _signature;
1111

1212
public AppointmentItemCacheEntry(AppointmentItem appointmentItem, string fromAccount)
1313
{

src/OutlookCalendarSync/MainForm.Designer.cs

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)