SiLeBAT/FSK-Lab

View on GitHub

Showing 14,752 of 14,752 total issues

Avoid deeply nested control flow statements.
Open

                            if (before) {
                                pm.estModelId = foreignDbIdsTable.get(key);
                                emxDB.id = foreignDbIdsTable.get(key);
                                fromToXmlDB.set(i, emxDB);
                            } else if (foreignDbIdsTable.get(key).intValue() != emxDB.id.intValue()) {

Avoid deeply nested control flow statements.
Open

                            if (before) {
                                pm.modelId = foreignDbIdsTable.get(key);
                                cmxDB.id = foreignDbIdsTable.get(key);
                                fromToXmlDB.set(i, cmxDB);
                            } else if (foreignDbIdsTable.get(key).intValue() != cmxDB.id.intValue()) {

Method getDoubleList has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    public static List<Double> getDoubleList(DataCell cell) {
        if (cell.isMissing()) {
            return new ArrayList<>();
        }

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

Avoid deeply nested control flow statements.
Open

                        if (key != null && foreignDbIdsTable.containsKey(key)) {
                            if (before) {
                                liDB.id = foreignDbIdsTable.get(key);
                                fromToXmlDB.set(i, liDB);
                            } else if (foreignDbIdsTable.get(key).intValue() != liDB.id.intValue()) {

Method setMIDs has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public static HashMap<Integer, Integer> setMIDs(boolean before, String attr, String dbTablename,
            HashMap<Integer, Integer> foreignDbIdsTable, KnimeTuple row, ParametricModel pm) throws PmmException {

Method getIntList has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    public static List<Integer> getIntList(DataCell cell) {
        if (cell.isMissing()) {
            return new ArrayList<>();
        }

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

Avoid deeply nested control flow statements.
Open

                        if (key != null && key <= -1 && key >= -3)
                            continue; // ATT_TEMPERATURE_ID, ATT_PH_ID or

Avoid deeply nested control flow statements.
Open

                        if (!p.equals(process)) {
                            newP = true;
                            if (process != null) {
                                if (!pFilled) {
                                    ranges.add(new Point2D.Double(processStart, time));

Method convertArrays2MiscXmlDoc has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public static PmmXmlDoc convertArrays2MiscXmlDoc(Array id, Array param, Array desc, Array value, Array unit, String dbuuid) {
Severity: Minor
Found in de.bund.bfr.knime.pmm.common/src/de/bund/bfr/knime/pmm/common/DbIo.java - About 45 mins to fix

Avoid deeply nested control flow statements.
Open

                        if (key != null && foreignDbIds.containsKey(key)) {
                            if (before) {
                                mx2DB.id = foreignDbIds.get(key); // schemaTuple.addValue(attr,
                                                                    // foreignDbIds.get(key));
                                fromToXmlDB.set(i, mx2DB);

Method createChart has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public JFreeChart createChart(DataTable table, List<String> usedParameters, String xUnits,
            boolean equidistantProcesses, boolean plotLines, boolean plotPoints) {

Method monitoredAssign has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

  void monitoredAssign(String symbol, BufferedDataTable value, ExecutionMonitor exec, int batchSize,
      String type, boolean sendRowNames)

Method value has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

        @Override
        public double[] value(double[] point) throws IllegalArgumentException {
            double[] retValue = new double[targetValues.length];

            for (int i = 0; i < parameters.length; i++) {

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

Avoid deeply nested control flow statements.
Open

                        if (!paramCell.isMissing()) {
                            Double val = ((DoubleCell) paramCell).getDoubleValue();
                            if (param2Cumulate && !newP) {
                                if (timeSeries.containsKey(time))
                                    timeSeries.put(time, val + timeSeries.get(time));

Method createChart has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public JFreeChart createChart(PCMLDocument pcmlDoc, List<String> usedParameters, String xUnits,
            boolean equidistantProcesses, boolean plotLines, boolean plotPoints) {

Avoid deeply nested control flow statements.
Open

                        if (timeColumn == null || !timeColumn.equals(column))
                            rowData.put(column, cursor.getTextValue());
                        else
                            curTime = (cursor.getTextValue() != null && !cursor.getTextValue().equalsIgnoreCase("null"))
                                    ? Double.valueOf(cursor.getTextValue()) : 0.0;

Method keyPressed has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    @Override
    public void keyPressed(KeyEvent event) {

      JTextField textField = (JTextField) event.getComponent();
      String query = textField.getText();

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 monitoredAssign has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

  public void monitoredAssign(final String name, final BufferedDataTable table,
      final ExecutionMonitor exec, final int batchSize, final String rType,
      final boolean sendRowNames) throws RException, CanceledExecutionException {

Avoid deeply nested control flow statements.
Open

                if (state.context.kind) {
                  state.localStates.pop();
                  var localState = last(state.localStates);
                  if (localState.mode.indent) {
                    state.indent -= localState.mode.indent(localState.state, "", "");
Severity: Major
Found in de.bund.bfr.knime.js/js-lib/codemirror-5.49.2/mode/soy/soy.js - About 45 mins to fix

Method addToken has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public void addToken(final char[] array, final int start, final int end, final int tokenType,
                         final int startOffset, final boolean hyperlink) {
Severity
Category
Status
Source
Language