> Hi all, > > I was looking for some other problem today, and noticed something rather > strange - GetMethod.java doesn't override > methodNeedsTransactionSupport(), so the default of true is used. So all > those harmless GETs are using transactions. > > Is there any reason for this, or is it just an oversight?
It looks like an oversight. All the methods which need to return true explicitely do, but methods which would be ok with a false don't override methodNeedsTransactionSupport(). So I would say WebdavMethod.methodNeedsTransactionSupport() should return false (since it's the default). Remy
