Git fork

Merge branch 'jc/cocci-cleanup'

Remove a coccinelle rule that is no longer relevant.

* jc/cocci-cleanup:
cocci: retire is_null_sha1() rule

-12
-12
contrib/coccinelle/object_id.cocci
··· 1 - @@ 2 - struct object_id OID; 3 - @@ 4 - - is_null_sha1(OID.hash) 5 - + is_null_oid(&OID) 6 - 7 - @@ 8 - struct object_id *OIDPTR; 9 - @@ 10 - - is_null_sha1(OIDPTR->hash) 11 - + is_null_oid(OIDPTR) 12 - 13 1 @@ 14 2 struct object_id OID; 15 3 @@