René's URL Explorer Experiment


Title: Sonar S4973 "==" and "!=" should not be used when "equals" is overridden · Issue #1051 · biojava/biojava · GitHub

Open Graph Title: Sonar S4973 "==" and "!=" should not be used when "equals" is overridden · Issue #1051 · biojava/biojava

X Title: Sonar S4973 "==" and "!=" should not be used when "equals" is overridden · Issue #1051 · biojava/biojava

Description: My company develops software that performs automatic remediation of java code. This software detects defects identified for example by Sonar and automatically applies corrective measures. Maybe you would be interested that we experiment ...

Open Graph Description: My company develops software that performs automatic remediation of java code. This software detects defects identified for example by Sonar and automatically applies corrective measures. Maybe you...

X Description: My company develops software that performs automatic remediation of java code. This software detects defects identified for example by Sonar and automatically applies corrective measures. Maybe you...

Opengraph URL: https://github.com/biojava/biojava/issues/1051

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Sonar S4973 \"==\" and \"!=\" should not be used when \"equals\" is overridden","articleBody":"My company develops software that performs automatic remediation of java code. This software detects defects identified for example by Sonar and automatically applies corrective measures. Maybe you would be interested that we experiment our product on your code? For example, we could submit PRs?\r\n\r\nWhen we try the rule S4973 \"==\" and \"!=\" should not be used when \"equals\" is overridden\r\nhttps://rules.sonarsource.com/java/RSPEC-1698\r\n\r\nBelow are the changes made by our software to correct this rule.\r\n\r\n    biojava-genome/src/main/java/org/biojava/nbio/genome/homology/GFF3FromUniprotBlastHits.java\r\n    @@ -140,7 +140,7 @@ public class GFF3FromUniprotBlastHits {\r\n                                                }\r\n                                                proteinIndex = proteinIndex + seq.length();\r\n    -                                               if (startIndex != null \u0026\u0026 endIndex != null \u0026\u0026 startIndex != endIndex) {\r\n    +                                               if (startIndex != null \u0026\u0026 endIndex != null \u0026\u0026 !startIndex.equals(endIndex)) {\r\n                                                        CDSSequence cdsSequence = cdsSequenceList.get(i);\r\n                                                        String hitLabel = \"\";\r\n                                                        if (transcriptSequence.getStrand() == Strand.POSITIVE) {\r\n\r\n    biojava-genome/src/main/java/org/biojava/nbio/genome/homology/GFF3FromUniprotBlastHits.java\r\n    @@ -140,7 +140,7 @@ public class GFF3FromUniprotBlastHits {\r\n                                                }\r\n                                                proteinIndex = proteinIndex + seq.length();\r\n    -                                               if (startIndex != null \u0026\u0026 endIndex != null \u0026\u0026 startIndex != endIndex) {\r\n    +                                               if (startIndex != null \u0026\u0026 endIndex != null \u0026\u0026 !startIndex.equals(endIndex)) {\r\n                                                        CDSSequence cdsSequence = cdsSequenceList.get(i);\r\n                                                        String hitLabel = \"\";\r\n                                                        if (transcriptSequence.getStrand() == Strand.POSITIVE) {\r\n\r\n    biojava-structure/src/main/java/org/biojava/nbio/structure/ecod/EcodInstallation.java\r\n    @@ -373,7 +373,7 @@ public class EcodInstallation implements EcodDatabase {\r\n                                return false;\r\n                        // Re-download old copies of \"latest\"\r\n    -                       if(updateFrequency != null \u0026\u0026 requestedVersion == DEFAULT_VERSION ) {\r\n    +                       if(updateFrequency != null \u0026\u0026 requestedVersion.equals(DEFAULT_VERSION) ) {\r\n                                long mod = f.lastModified();\r\n                                // Time of last update\r\n                                Date lastUpdate = new Date();\r\n\r\n    biojava-structure/src/main/java/org/biojava/nbio/structure/io/BondMaker.java\r\n    @@ -215,7 +215,7 @@ public class BondMaker {\r\n                        for (Atom a2:a2s) {\r\n                                if (a1.getAltLoc() != null \u0026\u0026 a2.getAltLoc()!=null \u0026\u0026\r\n                                                a1.getAltLoc()!=' ' \u0026\u0026 a2.getAltLoc()!=' ' \u0026\u0026\r\n    -                                               a1.getAltLoc() != a2.getAltLoc()) {\r\n    +                                               !a1.getAltLoc().equals(a2.getAltLoc())) {\r\n                                        logger.debug(\"Skipping bond between atoms with differently named alt locs {} (altLoc '{}') -- {} (altLoc '{}')\",\r\n                                                        a1.toString(), a1.getAltLoc(), a2.toString(), a2.getAltLoc());\r\n                                        continue;\r\n\r\n    biojava-structure/src/main/java/org/biojava/nbio/structure/symmetry/core/HelixSolver.java\r\n    @@ -366,7 +366,7 @@ public class HelixSolver {\r\n                        int permutation = -1;\r\n                        double minDistSq = Double.MAX_VALUE;\r\n                        for (int j = 0; j \u003c centers.size(); j++) {\r\n    -                               if (seqClusterId.get(i) == seqClusterId.get(j)) {\r\n    +                               if (seqClusterId.get(i) != null \u0026\u0026 seqClusterId.get(i).equals(seqClusterId.get(j))) {\r\n                                        if (!used[j]) {\r\n                                                double dSq = tCenter.distanceSquared(centers.get(j));\r\n                                                if (dSq \u003c minDistSq \u0026\u0026 dSq \u003c= rmsdThresholdSq) {\r\n\r\n    biojava-structure/src/main/java/org/biojava/nbio/structure/symmetry/core/RotationSolver.java\r\n    @@ -334,7 +334,7 @@ public class RotationSolver implements QuatSymmetrySolver {\r\n                int selfaligned = 0;\r\n                for (int i = 0; i \u003c permutation.size(); i++) {\r\n                        int j = permutation.get(i);\r\n    -                       if ( seqClusterId.get(i) != seqClusterId.get(j)) {\r\n    +                       if ( seqClusterId.get(i) != null \u0026\u0026 !seqClusterId.get(i).equals(seqClusterId.get(j))) {\r\n                                return false;\r\n                        }\r\n                        if(i == j ) {\r\n\r\n    biojava-structure/src/main/java/org/biojava/nbio/structure/symmetry/core/SystematicSolver.java\r\n    @@ -176,7 +176,7 @@ public class SystematicSolver implements QuatSymmetrySolver {\r\n                List\u003cInteger\u003e seqClusterId = subunits.getClusterIds();\r\n                for (int i = 0; i \u003c permutation.size(); i++) {\r\n                        int j = permutation.get(i);\r\n    -                       if (seqClusterId.get(i) != seqClusterId.get(j)) {\r\n    +                       if (seqClusterId.get(i) != null \u0026\u0026 !seqClusterId.get(i).equals(seqClusterId.get(j))) {\r\n                                return false;\r\n                        }\r\n                }\r\n\r\n\r\n","author":{"url":"https://github.com/jlerbsc","@type":"Person","name":"jlerbsc"},"datePublished":"2023-01-10T16:51:23.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/1051/biojava/issues/1051"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:8e0272fa-9ef4-15ee-3f30-b0c329f43b8b
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA698:28D0:11B5D4B:16B0DBE:69748E02
html-safe-nonce735896b9cc1ee93b9c9c8e32460612aa28ce0a39a3e09cffcbc8d85e02d0b25e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNjk4OjI4RDA6MTFCNUQ0QjoxNkIwREJFOjY5NzQ4RTAyIiwidmlzaXRvcl9pZCI6IjQxMTM4ODE1ODUyNjAyMDM1MjIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac93f982c04f4d11eef514acf01f0b470b58014794b9d7cdd18501421ccf000b32
hovercard-subject-tagissue:1527712585
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/biojava/biojava/1051/issue_layout
twitter:imagehttps://opengraph.githubassets.com/433beae898dac20ec5e762b095a387c184dc6c50d24e52ddabd7e141c608592a/biojava/biojava/issues/1051
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/433beae898dac20ec5e762b095a387c184dc6c50d24e52ddabd7e141c608592a/biojava/biojava/issues/1051
og:image:altMy company develops software that performs automatic remediation of java code. This software detects defects identified for example by Sonar and automatically applies corrective measures. Maybe you...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejlerbsc
hostnamegithub.com
expected-hostnamegithub.com
None4a4bf5f4e28041a9d2e5c107d7d20b78b4294ba261cab243b28167c16a623a1f
turbo-cache-controlno-preview
go-importgithub.com/biojava/biojava git https://github.com/biojava/biojava.git
octolytics-dimension-user_id237402
octolytics-dimension-user_loginbiojava
octolytics-dimension-repository_id9199359
octolytics-dimension-repository_nwobiojava/biojava
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id9199359
octolytics-dimension-repository_network_root_nwobiojava/biojava
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release488b30e96dfd057fbbe44c6665ccbc030b729dde
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/biojava/biojava/issues/1051#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fbiojava%2Fbiojava%2Fissues%2F1051
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fbiojava%2Fbiojava%2Fissues%2F1051
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=biojava%2Fbiojava
Reloadhttps://github.com/biojava/biojava/issues/1051
Reloadhttps://github.com/biojava/biojava/issues/1051
Reloadhttps://github.com/biojava/biojava/issues/1051
biojava https://github.com/biojava
biojavahttps://github.com/biojava/biojava
Notifications https://github.com/login?return_to=%2Fbiojava%2Fbiojava
Fork 395 https://github.com/login?return_to=%2Fbiojava%2Fbiojava
Star 623 https://github.com/login?return_to=%2Fbiojava%2Fbiojava
Code https://github.com/biojava/biojava
Issues 67 https://github.com/biojava/biojava/issues
Pull requests 2 https://github.com/biojava/biojava/pulls
Actions https://github.com/biojava/biojava/actions
Security 0 https://github.com/biojava/biojava/security
Insights https://github.com/biojava/biojava/pulse
Code https://github.com/biojava/biojava
Issues https://github.com/biojava/biojava/issues
Pull requests https://github.com/biojava/biojava/pulls
Actions https://github.com/biojava/biojava/actions
Security https://github.com/biojava/biojava/security
Insights https://github.com/biojava/biojava/pulse
New issuehttps://github.com/login?return_to=https://github.com/biojava/biojava/issues/1051
New issuehttps://github.com/login?return_to=https://github.com/biojava/biojava/issues/1051
Sonar S4973 "==" and "!=" should not be used when "equals" is overriddenhttps://github.com/biojava/biojava/issues/1051#top
https://github.com/jlerbsc
https://github.com/jlerbsc
jlerbschttps://github.com/jlerbsc
on Jan 10, 2023https://github.com/biojava/biojava/issues/1051#issue-1527712585
https://rules.sonarsource.com/java/RSPEC-1698https://rules.sonarsource.com/java/RSPEC-1698
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.