Refactor DiffProcessorMixin
Review Request #7014 — Created March 5, 2015 and submitted — Latest diff uploaded
The
DiffProcessorMixin
has been refactored into two classes: the
DiffManagerBase
class, which is a base class for the creation of
DiffSet
s andDiffCommit
s; and theDiffProcessor
, which handles
the creation ofFileDiffs
from raw diffs.The logic is separated into these two classes so that in a future
patch theDiffCommitManager
can provide a file existence checker
based on the currently existingDiffCommit
s in aDiffSet
for diff
file validation.
Ran unit tests.