OLD | NEW |
---|---|
(Empty) | |
1 assert(type == "android_apk" || type == "java_library" || | |
2 type == "android_resources" || (things == stuff && stuff != 432)) | |
3 | |
4 assert(type == "android_apk" || type == "java_library" || | |
5 type == "android_resources", | |
6 type == "android_apk" || type == "java_library" || | |
7 type == "android_resources") | |
8 | |
9 if (type == "android_apk" || type == "java_library" || | |
10 type == "android_resources" || (things == stuff && stuff != 432)) { | |
11 } | |
OLD | NEW |