Skip to content
Snippets Groups Projects
Commit 57c65b93 authored by anttil's avatar anttil
Browse files

SWE-2 / SP-314 : Fix stale reference problem

SVN: 26976
parent 5550627f
No related branches found
No related tags found
No related merge requests found
...@@ -66,8 +66,8 @@ public class PageProxy ...@@ -66,8 +66,8 @@ public class PageProxy
{ {
System.out.println("STALE REFERENCE - RELOADING " System.out.println("STALE REFERENCE - RELOADING "
+ self.getClass().getSimpleName()); + self.getClass().getSimpleName());
init(clazz, (T) self); T t = get(clazz);
return proceed.invoke(self, args); return proceed.invoke(t, args);
} else } else
{ {
throw e.getTargetException(); throw e.getTargetException();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment