summaryrefslogtreecommitdiff
path: root/sources/utils
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-25 09:48:22 +0000
committerPaul Buetow <paul@buetow.org>2008-05-25 09:48:22 +0000
commit5b6bf8d65ecd6b4b3cccc17314dd763255fb3856 (patch)
tree6372e6ffb8adc5767d8fd1f35a5f5d3130646ee5 /sources/utils
parentdeed4e94f9502377459c1f99f679ea5dd96d9bfa (diff)
Added private static final long serialVersionUID = 1L;
Some docu update.
Diffstat (limited to 'sources/utils')
-rw-r--r--sources/utils/VSClassLoader.java1
-rw-r--r--sources/utils/VSTools.java1
-rw-r--r--sources/utils/VSTupel.java1
3 files changed, 3 insertions, 0 deletions
diff --git a/sources/utils/VSClassLoader.java b/sources/utils/VSClassLoader.java
index 75ad994..60b3c9d 100644
--- a/sources/utils/VSClassLoader.java
+++ b/sources/utils/VSClassLoader.java
@@ -11,6 +11,7 @@ package utils;
* The Class VSClassLoader.
*/
public class VSClassLoader extends ClassLoader {
+ private static final long serialVersionUID = 1L;
/**
* New instance.
diff --git a/sources/utils/VSTools.java b/sources/utils/VSTools.java
index e4db8e1..3423fe5 100644
--- a/sources/utils/VSTools.java
+++ b/sources/utils/VSTools.java
@@ -10,6 +10,7 @@ package utils;
* The Class VSTools.
*/
public final class VSTools {
+ private static final long serialVersionUID = 1L;
/**
* Gets the time string.
diff --git a/sources/utils/VSTupel.java b/sources/utils/VSTupel.java
index 2177601..144b981 100644
--- a/sources/utils/VSTupel.java
+++ b/sources/utils/VSTupel.java
@@ -8,6 +8,7 @@ package utils;
* The Class VSTupel.
*/
public final class VSTupel<A,B,C> {
+ private static final long serialVersionUID = 1L;
/** The a. */
private A a;