Merge branch 'jetty-7' into jetty-8

This commit is contained in:
Jesse McConnell 2013-04-23 10:29:05 -05:00
commit 006614470b
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public class MongoSessionManager extends NoSqlSessionManager
}
else
{
version = new Long(((Long)version).intValue() + 1);
version = new Long(((Number)version).longValue() + 1);
update.put("$inc",__version_1);
}