[1.5 m3] SerializableChecker nullpointer?

2011-01-20 Thread nino martinez wael
Hi im wondering why this happens? Im using Guice and have a these in my page: @Inject private WallBoardDataProvider wallBoardDataProvider; @Inject private CoreService coreService; @Inject private CoreDaoService coreDaoService; @Inject private LicenseProvider licenseProvider; @Inject private

Re: [1.5 m3] SerializableChecker nullpointer?

2011-01-20 Thread Major Péter
One guess would be that the injected WallBoardDataProvider's equals method does not handle null arguments? Peter 2011-01-20 10:20 keltezéssel, nino martinez wael írta: Hi im wondering why this happens? Im using Guice and have a these in my page: @Inject private WallBoardDataProvider

Re: [1.5 m3] SerializableChecker nullpointer?

2011-01-20 Thread Pedro Santos
Probably there are an non serializable object somewhere, but SerializableChecker stop searching for it due this proxy equals method NPE. IMO the checker would do better continuing to search the source of serialization problem, can you confirm that testing the patch at