Skip to content

Commit

Permalink
TefilaRules - Add default constructor to avoid warnings on recent JDKs
Browse files Browse the repository at this point in the history
  • Loading branch information
KosherJava authored Jan 1, 2025
1 parent 6146fcf commit 04dc839
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Zmanim Java API
* Copyright (C) 2019 - 2024 Eliyahu Hershfeld
* Copyright (C) 2019 - 2025 Eliyahu Hershfeld
* Copyright (C) 2019 - 2021 Y Paritcher
*
* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General
Expand Down Expand Up @@ -45,7 +45,7 @@
* System.out.println(hdf.format(jewishCalendar) + ": " + tr.isTachanunRecitedShacharis(jewishCalendar));</pre>
*
* @author &copy; Y. Paritcher 2019 - 2021
* @author &copy; Eliyahu Hershfeld 2019 - 2024
* @author &copy; Eliyahu Hershfeld 2019 - 2025
*
* @todo The following items may be added at a future date.
* <ol>
Expand Down Expand Up @@ -146,6 +146,13 @@ public class TefilaRules {
*/
private boolean mizmorLesodaRecitedErevYomKippurAndPesach = false;

/**
* Default constructor of the TefilaRules. It currently does not have any parameters.
*/
public TefilaRules() {
// nothing here
}

/**
* Returns if <em>tachanun</em> is recited during <em>shacharis</em> on the day in question. There are the many
* <em>minhagim</em> based settings that are available in this class that control what days are set for
Expand Down

0 comments on commit 04dc839

Please sign in to comment.