Skip to content

Commit a233a47

Browse files
author
Yuriy Krymlov
committed
-Serializable
1 parent d7d8025 commit a233a47

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/main/java/swisseph/DblObj.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ The names of the authors or of the copyright holder (Astrodienst) must not
8181
*
8282
* @version 1.0.0b
8383
*/
84-
public class DblObj implements java.io.Serializable {
85-
private static final long serialVersionUID = 7514197496963065053L;
84+
public class DblObj {
8685

8786
/**
8887
* This is the double value that has become wrapped up into a real object.

src/main/java/swisseph/SDate.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ The names of the authors or of the copyright holder (Astrodienst) must not
8080
* @version 1.0.0a
8181
*/
8282

83-
final class SDate implements Serializable {
84-
private static final long serialVersionUID = 8055618799629692138L;
83+
final class SDate {
8584

8685
final int[] ymdhms = new int[6];
8786
final double hour, second;

src/main/java/swisseph/SweDate.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2342,8 +2342,7 @@ public boolean equals(Object obj) {
23422342
return true;
23432343
}
23442344

2345-
static final class IDate implements java.io.Serializable {
2346-
private static final long serialVersionUID = -149378359852767471L;
2345+
static final class IDate {
23472346

23482347
int year, month, day;
23492348
double hour;

0 commit comments

Comments
 (0)