Showing 67 of 108 total issues
Method buildRequestUrl
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private String buildRequestUrl(List<String> symbols) {
StringBuilder sQuery = new StringBuilder();
for (String s : symbols) {
if (!s.equals("")) {
if (!sQuery.toString().equals("")) {
- 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 buildRequestUrl
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private String buildRequestUrl(List<String> symbols) {
StringBuilder sQuery = new StringBuilder();
for (String s : symbols) {
if (!s.equals("")) {
if (!sQuery.toString().equals("")) {
- 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 removeFilesExceptWhitelist
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private static void removeFilesExceptWhitelist(String sharedPrefsFolder, ArrayList<String> preferencesFilenames) {
File sharedPrefsDir = new File(sharedPrefsFolder);
if (sharedPrefsDir.exists()) {
for (File f : sharedPrefsDir.listFiles()) {
if (!preferencesFilenames.contains(f.getName())) {
- 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 SetStockInfoExtraTextAndColourForWideWidget
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private void SetStockInfoExtraTextAndColourForWideWidget(String symbol, WidgetRow widgetRow, String stockInfoExtra, Boolean stockInfoExtraIsCurrency) {
if (!widget.isNarrow()) {
if (stockInfoExtra != null) {
String infoExtraText = stockInfoExtra;
if (stockInfoExtraIsCurrency) {
- 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 persist
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private void persist() {
JSONObject json = new JSONObject();
for (String symbol : this.portfolioStocksInfo.keySet()) {
PortfolioStock item = this.portfolioStocksInfo.get(symbol);
if (item.hasData()) {
- 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 getTrimmedDouble2
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public static String getTrimmedDouble2(double number, int digits) {
String numberAsString = Double.toString(number);
// Find the position of the decimal point
int decimalPos = numberAsString.indexOf(".");
- 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 buildRequestUrl
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private String buildRequestUrl(List<String> symbols) {
StringBuilder sQuery = new StringBuilder();
for (String s : symbols) {
if (!s.equals("")) {
if (!sQuery.toString().equals("")) {
- 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"