Showing 145 of 154 total issues
Method __singleStep
has 1360 lines of code (exceeds 100 allowed). Consider refactoring. Open
private strictfp void __singleStep()
{
// Need the current frame and its byte code
SpringThread thread = this.thread;
File SpringThreadWorker.java
has 2472 lines of code (exceeds 850 allowed). Consider refactoring. Open
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
// Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
Method __singleStep
has a Cognitive Complexity of 214 (exceeds 24 allowed). Consider refactoring. Open
private strictfp void __singleStep()
{
// Need the current frame and its byte code
SpringThread thread = this.thread;
- 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 __nextInternal
has a Cognitive Complexity of 142 (exceeds 24 allowed). Consider refactoring. Open
private Data __nextInternal()
throws IOException
{
// Reading loop
for (;;)
- 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 __context
has a Cognitive Complexity of 105 (exceeds 24 allowed). Consider refactoring. Open
private boolean __context(JDWPController __controller, Object __thread,
EventModContext __context, Object __on, Object[] __ensnare)
throws NullPointerException
{
if (__controller == null || __context == 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 __format
has a Cognitive Complexity of 94 (exceeds 24 allowed). Consider refactoring. Open
@SuppressWarnings({"StaticVariableUsedBeforeInitialization"})
private static void __format(char __cha, char __chb, String __format,
Object... __args)
{
// Print otherwise
- 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 __internalGet
has a Cognitive Complexity of 89 (exceeds 24 allowed). Consider refactoring. Open
private final void __internalGet()
{
// Read next data bit
Input.Data d = this.input.next();
String ds;
- 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 read
has a Cognitive Complexity of 74 (exceeds 24 allowed). Consider refactoring. Open
@Override
public int read()
throws IOException
{
// Lock
- 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 main
has a Cognitive Complexity of 70 (exceeds 24 allowed). Consider refactoring. Open
public static void main(String... __args)
{
// Default settings
String vmName = "springcoat";
Path snapshotPath = 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 __opLength
has 263 lines of code (exceeds 100 allowed). Consider refactoring. Open
private static int __opLength(byte[] __code, int __a, int[] __last)
throws InvalidClassFormatException, NullPointerException
{
// Check
if (__code == null)
Method __undirty
has a Cognitive Complexity of 61 (exceeds 24 allowed). Consider refactoring. Open
private void __undirty()
{
if (!this._dirty)
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
Consider simplifying this complex logical expression. Open
else if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
(c >= '0' && c <= '9') || c == ':' || c == '@' || c == '-' ||
c == '.' || c == '_' || c == '~' || c == '!' || c == '$' ||
c == '&' || c == '\'' || c == '(' || c == ')' || c == '*' ||
c == '+' || c == ',' || c == ';' || c == '=')
File AdvancedGraphics.java
has 1027 lines of code (exceeds 850 allowed). Consider refactoring. Open
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
// Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
Method deserialize
has 223 lines of code (exceeds 100 allowed). Consider refactoring. Open
public static Object deserialize(Graphics __g, GraphicsFunction __func,
Object... __args)
throws IllegalArgumentException, NullPointerException
{
if (__g == null || __func == null)
Method toString
has 223 lines of code (exceeds 100 allowed). Consider refactoring. Open
@SuppressWarnings("MagicNumber")
public static String toString(int __code)
{
// Wide codes
switch (__code & 0xFFFF)
Method toString
has 221 lines of code (exceeds 100 allowed). Consider refactoring. Open
public static String toString(int __op)
{
switch (__op)
{
case InstructionIndex.NOP: return "NOP";
Method toChar
has 200 lines of code (exceeds 100 allowed). Consider refactoring. Open
public static final int toChar(String __n)
throws NullPointerException
{
if (__n == null)
throw new NullPointerException("NARG");
Method read
has a Cognitive Complexity of 49 (exceeds 24 allowed). Consider refactoring. Open
@Override
public final int read(byte[] __b, int __o, int __l)
throws IndexOutOfBoundsException, IOException, NullPointerException
{
if (__b == 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 __internalGet
has 184 lines of code (exceeds 100 allowed). Consider refactoring. Open
private final void __internalGet()
{
// Read next data bit
Input.Data d = this.input.next();
String ds;
Method main
has 178 lines of code (exceeds 100 allowed). Consider refactoring. Open
public static void main(String... __args)
{
// Default settings
String vmName = "springcoat";
Path snapshotPath = null;