You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code inside com.tmobile.kardio.surveiller.apidashboard.APIDashboardTask.doApiDashboardDataLoad() contains a suspicious comparison of integer references which can lead to unexpected behavior and potential bugs.
To reproduce:
Go to com.tmobile.kardio.surveiller.apidashboard.APIDashboardTask.doApiDashboardDataLoad() in the src/main/java folder
Go to the if statement on line 160
Identify the use of != to compare strings
Expected: The use of .equals() to compare the contents of two strings to ensure correct behavior
Actual: != is used which compares references instead of contents.
The text was updated successfully, but these errors were encountered:
The code inside com.tmobile.kardio.surveiller.apidashboard.APIDashboardTask.doApiDashboardDataLoad() contains a suspicious comparison of integer references which can lead to unexpected behavior and potential bugs.
To reproduce:
Expected: The use of .equals() to compare the contents of two strings to ensure correct behavior
Actual: != is used which compares references instead of contents.
The text was updated successfully, but these errors were encountered: