Guard against error reported in Bug 842781
This commit is contained in:
parent
c75472399f
commit
b3ffae34fd
|
|
@ -89,6 +89,9 @@ public class BaseScope extends DefaultScope {
|
|||
catch (ClassNotFoundException e) {
|
||||
// no-op
|
||||
}
|
||||
catch (NoClassDefFoundError e) {
|
||||
// no-op, checkstyle bug 842781
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Reference in New Issue