Skip to content

Commit

Permalink
deploy: ef8438b
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Nov 4, 2024
1 parent b9c05c2 commit 9c34418
Show file tree
Hide file tree
Showing 7 changed files with 11,414 additions and 11,503 deletions.
1,456 changes: 728 additions & 728 deletions qodana/results/descriptions/Code_Inspection.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions qodana/results/metaInformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
"linter": "QDJVM",
"attributes": {
"deviceId": "200820300000000-b1a5-d275-f8e7-faf9fd093ee8",
"jobUrl": "https://github.com/1c-syntax/bsl-language-server/actions/runs/11668708087",
"jobUrl": "https://github.com/1c-syntax/bsl-language-server/actions/runs/11668736545",
"vcs": {
"sarifIdea": {
"repositoryUri": "https://github.com/1c-syntax/bsl-language-server.git",
"revisionId": "5f877fb73495e4c041d00d0221b84a50bba69831",
"revisionId": "ef8438bc965f26b6e180d9a8b468213a1830d1cb",
"branch": "develop"
}
},
Expand Down
8 changes: 4 additions & 4 deletions qodana/results/projectStructure/qodana.spdx.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Tool: Qodana",
"Organization: JetBrains s.r.o."
],
"created": "2024-11-04T17:00:41Z"
"created": "2024-11-04T17:04:29Z"
},
"packages": [
{
Expand All @@ -27,7 +27,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "5f877fb73495e4c041d00d0221b84a50bba69831"
"checksumValue": "ef8438bc965f26b6e180d9a8b468213a1830d1cb"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -48,7 +48,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "5f877fb73495e4c041d00d0221b84a50bba69831"
"checksumValue": "ef8438bc965f26b6e180d9a8b468213a1830d1cb"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -69,7 +69,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "5f877fb73495e4c041d00d0221b84a50bba69831"
"checksumValue": "ef8438bc965f26b6e180d9a8b468213a1830d1cb"
}
],
"primaryPackagePurpose": "SOURCE"
Expand Down
8 changes: 4 additions & 4 deletions qodana/results/projectStructure/thirdPartySoftwareList.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Tool: Qodana",
"Organization: JetBrains s.r.o."
],
"created": "2024-11-04T17:00:41Z"
"created": "2024-11-04T17:04:29Z"
},
"packages": [
{
Expand All @@ -27,7 +27,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "5f877fb73495e4c041d00d0221b84a50bba69831"
"checksumValue": "ef8438bc965f26b6e180d9a8b468213a1830d1cb"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -48,7 +48,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "5f877fb73495e4c041d00d0221b84a50bba69831"
"checksumValue": "ef8438bc965f26b6e180d9a8b468213a1830d1cb"
}
],
"primaryPackagePurpose": "SOURCE"
Expand All @@ -69,7 +69,7 @@
"checksums": [
{
"algorithm": "SHA1",
"checksumValue": "5f877fb73495e4c041d00d0221b84a50bba69831"
"checksumValue": "ef8438bc965f26b6e180d9a8b468213a1830d1cb"
}
],
"primaryPackagePurpose": "SOURCE"
Expand Down
33 changes: 1 addition & 32 deletions qodana/results/promo.json
Original file line number Diff line number Diff line change
@@ -1,32 +1 @@
{"version":"3","listProblem":[{
"tool": "Code Inspection",
"category": "Declaration redundancy",
"type": "'protected' member in 'final' class",
"tags": [
"JAVA"
],
"severity": "High",
"comment": "Class member declared `protected` in 'final' class",
"detailsInfo": "Reports `protected` members in `final`classes.\n\nSince `final` classes cannot be inherited, marking the method as `protected`\nmay be confusing. It is better to declare such members as `private` or package-visible instead.\n\n**Example:**\n\n record Bar(int a, int b) {\n protected int sum() { \n return a + b;\n }\n }\n\nAfter the quick-fix is applied:\n\n record Bar(int a, int b) {\n int sum() { \n return a + b;\n }\n }\n\nAs shown in the example, a class can be marked as `final` explicitly or implicitly.",
"sources": [
{
"type": "file",
"path": "src/main/java/com/github/_1c_syntax/bsl/languageserver/utils/expressiontree/TernaryOperatorNode.java",
"language": "JAVA",
"line": 40,
"offset": 3,
"length": 9,
"code": {
"startLine": 38,
"length": 9,
"offset": 30,
"surroundingCode": " BslExpression falsePart;\n\n protected TernaryOperatorNode(BslExpression condition, BslExpression truePart, BslExpression falsePart) {\n super(ExpressionNodeType.TERNARY_OP);\n this.condition = condition;"
}
}
],
"attributes": {
"module": "bsl-language-server.main",
"inspectionName": "ProtectedMemberInFinalClass"
},
"hash": "d9c993d92b4291aaeef7c252b06070217bdf419d186aff75c238630e051b7199"
}]}
{"version":"3","listProblem":[]}
Loading

0 comments on commit 9c34418

Please sign in to comment.