Skip to content

Commit 0bd4e7a

Browse files
Ja bist du narrischJa bist du narrisch
authored andcommitted
Special interest of yogibear: | instead of |=
1 parent 313ae15 commit 0bd4e7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Migrator/Framework/ColumnPropertyExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ public static bool IsNotSet(this ColumnProperty columnProperty, ColumnProperty f
1616

1717
public static ColumnProperty Set(this ColumnProperty columnProperty, ColumnProperty flags)
1818
{
19-
return columnProperty |= flags;
19+
return columnProperty | flags;
2020
}
2121

2222
public static ColumnProperty Clear(this ColumnProperty columnProperty, ColumnProperty flags)
2323
{
24-
return columnProperty &= ~flags;
24+
return columnProperty & ~flags;
2525
}
2626
}

0 commit comments

Comments
 (0)