Skip to content

Commit

Permalink
move ResultGetState to obj package
Browse files Browse the repository at this point in the history
  • Loading branch information
BenAlvo1 committed Jan 22, 2025
1 parent 56ddeb7 commit ba947c7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
7 changes: 2 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,8 @@ jacocoTestReport {
if (jacocoTask == "integration") {
afterEvaluate {
classDirectories.setFrom(files(classDirectories.files.collect {
fileTree(dir: it, include: 'com/checkmarx/intellij/commands/**', exclude: [
'**/get*.class', // Exclude getters
'**/set*.class', // Exclude setters
'**/toString*.class' // Exclude toString methods
])
fileTree(dir: it, include: 'com/checkmarx/intellij/commands/**',
exclude: 'com/checkmarx/intellij/commands/results/obj')
}))
}
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.checkmarx.intellij.Resource;
import com.checkmarx.intellij.Utils;
import com.checkmarx.intellij.commands.Scan;
import com.checkmarx.intellij.commands.results.obj.ResultGetState;
import com.checkmarx.intellij.settings.global.CxWrapperFactory;
import com.intellij.openapi.diagnostic.Logger;
import org.apache.commons.lang3.StringUtils;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.checkmarx.intellij.commands.results;
package com.checkmarx.intellij.commands.results.obj;

import com.checkmarx.intellij.commands.results.Results;
import lombok.Data;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package com.checkmarx.intellij.tool.window;

import com.checkmarx.intellij.*;
import com.checkmarx.intellij.ASCA.AscaService;
import com.checkmarx.intellij.commands.TenantSetting;
import com.checkmarx.intellij.commands.results.ResultGetState;
import com.checkmarx.intellij.commands.results.obj.ResultGetState;
import com.checkmarx.intellij.commands.results.Results;
import com.checkmarx.intellij.components.TreeUtils;
import com.checkmarx.intellij.project.ProjectResultsService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.checkmarx.intellij.Bundle;
import com.checkmarx.intellij.integration.Environment;
import com.checkmarx.intellij.Resource;
import com.checkmarx.intellij.commands.results.ResultGetState;
import com.checkmarx.intellij.commands.results.obj.ResultGetState;
import com.checkmarx.intellij.commands.results.Results;
import com.checkmarx.intellij.integration.standard.BaseTest;
import org.junit.jupiter.api.Assertions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.checkmarx.ast.wrapper.CxConstants;
import com.checkmarx.intellij.Constants;
import com.checkmarx.intellij.integration.Environment;
import com.checkmarx.intellij.commands.results.ResultGetState;
import com.checkmarx.intellij.commands.results.obj.ResultGetState;
import com.checkmarx.intellij.commands.results.Results;
import com.checkmarx.intellij.integration.standard.BaseTest;
import org.junit.jupiter.api.Assertions;
Expand Down

0 comments on commit ba947c7

Please sign in to comment.