Community
Participate
Working Groups
I'm porting the e4rover code to the latest from HEAD. The code used the following pattern for reporting exceptions: class XXX { // ... @Inject Provider<StatusReporter> statusReporter; // ... void code() { try { ... } catch(Exception e) { statusReporter.get().show(...); } } } This isn't working: the statusReporter.get() is failing. Unfortunately I'm leaving for a plane, and don't have the traceback to show :-(
Created attachment 171871 [details] Patch Good catch, the creation of providers based on the context information (as opposing to bindings) was totally broken.
Patch applied to CVS Head.