Skip to content

Commit

Permalink
remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
uzzu committed Dec 19, 2013
1 parent 8bfaad7 commit 5d7ba85
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions PlistCS/Src/Plist.cs
Expand Up @@ -723,8 +723,6 @@ private static object parseBinaryDictionary(int objRef)
List<int> refs = new List<int>();
int refCount = 0;

byte dictByte = objectTable[offsetTable[objRef]];

int refStartPosition;
refCount = getCount(offsetTable[objRef], out refStartPosition);

Expand Down Expand Up @@ -755,8 +753,6 @@ private static object parseBinaryArray(int objRef)
List<int> refs = new List<int>();
int refCount = 0;

byte arrayByte = objectTable[offsetTable[objRef]];

int refStartPosition;
refCount = getCount(offsetTable[objRef], out refStartPosition);

Expand Down Expand Up @@ -962,4 +958,4 @@ public static double ConvertToAppleTimeStamp(DateTime date)
return Math.Floor(diff.TotalSeconds);
}
}
}
}

0 comments on commit 5d7ba85

Please sign in to comment.