Ver código fonte

Remove redundant type check

The same condition is repeated twice (caught by FindBugs.)
tags/rel_3_29_0_ga
April Schleck 2 anos atrás
pai
commit
fc299f8bc0
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 0 adições e 1 exclusões
  1. 0
    1
      src/main/javassist/util/proxy/SecurityActions.java

+ 0
- 1
src/main/javassist/util/proxy/SecurityActions.java Ver arquivo

@@ -213,7 +213,6 @@ class SecurityActions extends SecurityManager
if (e.getCause() instanceof NoSuchFieldException)
throw new ClassNotFoundException("No such instance.", e.getCause());
if (e.getCause() instanceof IllegalAccessException
|| e.getCause() instanceof IllegalAccessException
|| e.getCause() instanceof SecurityException)
throw new ClassNotFoundException("Security denied access.", e.getCause());
throw new RuntimeException(e.getCause());

Carregando…
Cancelar
Salvar