Skip to content

Commit ab01f18

Browse files
authored
AstronomicalCalculator - Remove debugging line
1 parent 60b3cd2 commit ab01f18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/kosherjava/zmanim/util/AstronomicalCalculator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @todo Consider methods that would allow atmospheric modeling. This can currently be adjusted by {@link
2525
* #setRefraction(double) setting the refraction}.
2626
*
27-
* @author © Eliyahu Hershfeld 2004 - 2026
27+
* @author © Eliyahu Hershfeld 2004 - 2026
2828
*/
2929
public abstract class AstronomicalCalculator implements Cloneable {
3030
/**
@@ -373,7 +373,7 @@ public Object clone() {
373373
try {
374374
clone = (AstronomicalCalculator) super.clone();
375375
} catch (CloneNotSupportedException cnse) {
376-
System.out.print("Required by the compiler. Should never be reached since we implement clone()");
376+
// Required by the compiler. Should never be reached since we implement clone().
377377
}
378378
return clone;
379379
}

0 commit comments

Comments
 (0)