a0cb16567a
The following warning is issued on the base version by error prone: warning: [ClassNewInstance] Class.newInstance() bypasses exception checking; prefer getConstructor().newInstance() shell = console.newInstance(); ^ (see http://errorprone.info/bugpattern/ClassNewInstance) Did you mean 'shell = console.getConstructor().newInstance();'? Change-Id: Ia3b474422965851ae1f64de4f2767179af33bf12