diff options
author | aclement <aclement> | 2006-08-25 12:41:38 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-25 12:41:38 +0000 |
commit | 40cf61076994bf2dd6f0397b1bd0287ed546a75b (patch) | |
tree | 99e2de64e95686d07ec08c6e2ee9bfe9ce15e28f /weaver | |
parent | b394aa711917bc4330bccbb65032171a12fcb8fa (diff) | |
download | aspectj-40cf61076994bf2dd6f0397b1bd0287ed546a75b.tar.gz aspectj-40cf61076994bf2dd6f0397b1bd0287ed546a75b.zip |
fix for 155213: made using date formatter lazy.
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/AjAttribute.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weaver/src/org/aspectj/weaver/AjAttribute.java b/weaver/src/org/aspectj/weaver/AjAttribute.java index 6a7ff1ced..a1fc5fcc4 100644 --- a/weaver/src/org/aspectj/weaver/AjAttribute.java +++ b/weaver/src/org/aspectj/weaver/AjAttribute.java @@ -247,7 +247,7 @@ public abstract class AjAttribute { public void write(DataOutputStream s) throws IOException { s.writeShort(CURRENT_VERSION_MAJOR); s.writeShort(CURRENT_VERSION_MINOR); - s.writeLong(Version.time); // build used to construct the class... + s.writeLong(Version.getTime()); // build used to construct the class... } public static WeaverVersionInfo read(VersionedDataInputStream s) throws IOException { |