| Index: appengine/findit/crash/changelist_classifier.py
|
| diff --git a/appengine/findit/crash/changelist_classifier.py b/appengine/findit/crash/changelist_classifier.py
|
| index eb2abba2df226f7cd2c1ee16aadaa03c0228e2a7..47bf9062eba1a9c7ee6a76c6c8c2fdfd31328a51 100644
|
| --- a/appengine/findit/crash/changelist_classifier.py
|
| +++ b/appengine/findit/crash/changelist_classifier.py
|
| @@ -58,12 +58,8 @@ class ChangelistClassifier(namedtuple('ChangelistClassifier',
|
| last_good_version, first_bad_version)
|
|
|
| # Restrict analysis to just the top n frames in each callstack.
|
| - # TODO(wrengr): move this to be a Stacktrace method?
|
| stacktrace = Stacktrace([
|
| - CallStack(stack.priority,
|
| - format_type=stack.format_type,
|
| - language_type=stack.language_type,
|
| - frame_list=stack[:self.top_n_frames])
|
| + stack.SliceFrames(None, self.top_n_frames)
|
| for stack in report.stacktrace])
|
|
|
| # We are only interested in the deps in crash stack (the callstack that
|
|
|