Skip to content

Commit 0174895

Browse files
committed
Remove unnecessary parens
1 parent 87b2cd3 commit 0174895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ impl ObjectType {
827827

828828
/// Determine if the given git_object_t is a valid loose object type.
829829
pub fn is_loose(&self) -> bool {
830-
unsafe { (call!(raw::git_object_typeisloose(*self)) == 1) }
830+
unsafe { call!(raw::git_object_typeisloose(*self)) == 1 }
831831
}
832832

833833
/// Convert a raw git_object_t to an ObjectType

0 commit comments

Comments
 (0)