Skip to content

Commit 6ad2b69

Browse files
fix: remove semicolon from enum value in PolarCircleResolution
The enum value 'unresolved' had a trailing semicolon which is invalid Dart syntax. This was causing all tests to fail with compilation errors. Co-authored-by: Riajul Islam <iamriajul@users.noreply.github.com>
1 parent 20c9e2f commit 6ad2b69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/polar_circle_resolution.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ enum PolarCircleResolution {
1414

1515
/// Leave prayer times undefined when they cannot be calculated due to polar conditions.
1616
/// This maintains the original behavior before polar circle resolution was introduced.
17-
unresolved;
17+
unresolved
1818
}
1919

2020
/// Constants for polar circle resolution calculations

0 commit comments

Comments
 (0)