Index: build/android/pylib/utils/proguard.py |
diff --git a/build/android/pylib/utils/proguard.py b/build/android/pylib/utils/proguard.py |
index 244978e24f8b79493bd83c7d0121cd76159ff393..89dc4c79b331760d0add4628ca50187aaf8d9bf7 100644 |
--- a/build/android/pylib/utils/proguard.py |
+++ b/build/android/pylib/utils/proguard.py |
@@ -284,5 +284,8 @@ def Parse(proguard_output): |
if m: |
state.UpdateCurrentAnnotationFieldValue( |
m.group(2), _GetDepth(m.group(1))) |
+ else: |
+ state.InitMethod(None) |
jbudorick
2016/04/08 00:59:09
What does this line that gets here contain? It's n
dgn
2016/04/08 16:54:52
So that clears the annotation stack when we hit so
agrieve
2016/04/08 17:35:36
That's what we want, but it's not what the code wa
|
+ |
return results |