Showing 4,841 of 7,782 total issues
Method getAttributeNames
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public Enumeration getAttributeNames() {
final Enumeration _e = _req.getAttributeNames();
final Iterator _it = _attrs.keySet().iterator();
return new Enumeration() {
Object _next;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getResource
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private URL getResource() throws MalformedURLException {
return _prtctx != null ? _prtctx.getResource(_uri)
: _svlctx != null ? _svlctx.getResource(_uri) : _extctx != null ? _extctx.getResource(_uri) : null;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getResourceAsStream
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private InputStream getResourceAsStream() {
return _prtctx != null ? _prtctx.getResourceAsStream(_uri)
: _svlctx != null ? _svlctx.getResourceAsStream(_uri)
: _extctx != null ? _extctx.getResourceAsStream(_uri) : null;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getLastModified
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public long getLastModified(String src) {
if (getCheckPeriod() < 0)
return 1; //any value (because it is not dynamic)
URLConnection conn = null;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method resolveThemeURL
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public static final String resolveThemeURL(String url) {
if (url == null)
return null;
String themeName = ThemeFns.getCurrentTheme();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getWriter
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public PrintWriter getWriter() throws IOException {
if (_sos != null)
throw new IllegalStateException("getOutputStream was called");
if (_pwt == null) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getCurrentTheme
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public static String getCurrentTheme() {
// 1. cookie's key
String t = getTheme();
if (_themeRegistry.hasTheme(t))
return t;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method addToQueryString
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public static final StringBuffer addToQueryString(StringBuffer sb, String name, Object value)
throws UnsupportedEncodingException {
if (value instanceof Object[]) {
final Object[] vals = (Object[]) value;
if (vals.length == 0) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method renderWith
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private void renderWith(ActionContext ac, Status st, Iterator it) throws DspException, IOException {
final StringWriter out = getFragmentOut(ac, _trim);
for (int j = 0; ++j <= _beg && it.hasNext();) //skip
it.next();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method checkColorRange
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private void checkColorRange(int r, int g, int b, int a) {
String wrongColors = "";
boolean gotError = false;
if (r < 0 || r > 255) {
gotError = true;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method renderWith
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private void renderWith(ActionContext ac, Status st, Enumeration enm) throws DspException, IOException {
final StringWriter out = getFragmentOut(ac, _trim);
for (int j = 0; ++j <= _beg && enm.hasMoreElements();) //skip
enm.nextElement();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getWriter
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public PrintWriter getWriter() throws IOException {
if (_sos != null)
throw new IllegalStateException("getOutputStream was called");
if (_pwt == null) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function send
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export function send(aureq: zk.Event, timeout = 0): void {
//ZK-2790: when unload event is triggered, the desktop is destroyed
//we shouldn't send request back to server
if (zk.unloading && zk.rmDesktoping) //it's safer to check if both zk.unloading and zk.rmDesktoping are true
return;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function ajaxSend
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
function ajaxSend(dt: zk.Desktop, aureq: zk.Event, timeout?: number): void {
//ZK-1523: dt(desktop) could be null, so search the desktop from target's parent.
//call stack: echo2() -> send()
if (!dt) {
//original dt is decided by aureq.target.desktop, so start by it's parent.
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function tabpanel$mold$
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
function tabpanel$mold$(out) {
let w;
const uuid = this.uuid,
tabbox = this.getTabbox();
if (tabbox.inAccordionMold()) {//Accordion
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function _removePrefixSharps
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
_removePrefixSharps(val: string, localizedSymbols: zk.LocalizedSymbols): string {
var ret = '',
sharp = true;
for (var len = val.length, j = 0; j < len; ++j) {
var cc = val.charAt(j);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function isRealScrollIntoView
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
isRealScrollIntoView(opt?: boolean): boolean {
var wgt = this.$();
if (!wgt)
return false;
var desktop = wgt.desktop,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function $equals
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
$equals(this: Array<unknown>, o): boolean {
if (Array.isArray(o) && o.length == this.length) {
for (var j = this.length; j--;) {
var e = this[j];
if (e != o[j] && (!Array.isArray(e) || !e.$equals(o[j])))
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function redoCSS
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
redoCSS(timeout?: number, opts?: Partial<RedoCSSOptions>): this {
if (opts?.fixFontIcon) {
return this;
}
if (timeout == -1) { //timeout -1 means immediately
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function isParameter
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
isParameter: function (node: TSESTree.Node, expr: TSESTree.Node) {
if (expr.type === 'CallExpression') {
// Check whether any of the call arguments equals the node.
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"