Re: [VOTE] Release Regexp 1.4

2005-08-12 Thread Henri Yandell
On Fri, 12 Aug 2005, Daniel F. Savarese wrote: In message <[EMAIL PROTECTED]>, Vadim Gritsenko writes: and vote for a release. +1 +1, been noticing the commits :) Hen - To unsubscribe, e-mail: [EMAIL PROTECTED] For add

Re: [VOTE] Release Regexp 1.4

2005-08-12 Thread Daniel F. Savarese
In message <[EMAIL PROTECTED]>, Vadim Gritsenko writes: >and vote for a release. +1 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[VOTE] Release Regexp 1.4

2005-08-12 Thread Vadim Gritsenko
Hi All, With several recent bugfixes [1,2], and with previous release published almost two years ago [3], I think it is a good time to make a next, 1.4 release of the Jakarta Regexp. Please try out current svn (r232390) version [4] and test for any regressions, and vote for a release. My v

Re: last modified

2005-08-12 Thread Torsten Curdt
This might have to do something with the timestamp resolution of the filesystem. Not every filesystem have a resolution of milliseconds but some higher factor. Yeah, Brett already pointed offlist me on that. It gets ever worse e.g 10ms for FAT on create but 2sec for write (http://msdn.mi

Re: last modified

2005-08-12 Thread Mario Ivankovits
Hi Torsten! public static void main(String[] args) throws Exception { File dir = new File("dir"); dir.mkdir(); long m = dir.lastModified(); File subdir = new File(dir, "subdir"); This might have to do something with the timestamp resolution of the filesystem. Not every file

last modified

2005-08-12 Thread Torsten Curdt
Guys, I hope this is not too OT for this list but I am running out of ideas. What could be possibly be wrong with the following piece of code: import java.io.File; public class test { public static void main(String[] args) throws Exception { File dir = new File("dir"); dir.mkdir();