Skip to content

Commit 04dc839

Browse files
authored
TefilaRules - Add default constructor to avoid warnings on recent JDKs
1 parent 6146fcf commit 04dc839

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/main/java/com/kosherjava/zmanim/hebrewcalendar/TefilaRules.java

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Zmanim Java API
3-
* Copyright (C) 2019 - 2024 Eliyahu Hershfeld
3+
* Copyright (C) 2019 - 2025 Eliyahu Hershfeld
44
* Copyright (C) 2019 - 2021 Y Paritcher
55
*
66
* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General
@@ -45,7 +45,7 @@
4545
* System.out.println(hdf.format(jewishCalendar) + ": " + tr.isTachanunRecitedShacharis(jewishCalendar));</pre>
4646
*
4747
* @author &copy; Y. Paritcher 2019 - 2021
48-
* @author &copy; Eliyahu Hershfeld 2019 - 2024
48+
* @author &copy; Eliyahu Hershfeld 2019 - 2025
4949
*
5050
* @todo The following items may be added at a future date.
5151
* <ol>
@@ -146,6 +146,13 @@ public class TefilaRules {
146146
*/
147147
private boolean mizmorLesodaRecitedErevYomKippurAndPesach = false;
148148

149+
/**
150+
* Default constructor of the TefilaRules. It currently does not have any parameters.
151+
*/
152+
public TefilaRules() {
153+
// nothing here
154+
}
155+
149156
/**
150157
* Returns if <em>tachanun</em> is recited during <em>shacharis</em> on the day in question. There are the many
151158
* <em>minhagim</em> based settings that are available in this class that control what days are set for

0 commit comments

Comments
 (0)