Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EPMRPP-83651 || Update JOOQ query for activityStatistics #901

Merged
merged 3 commits into from
Jul 14, 2023

Conversation

rkukharenka
Copy link
Contributor

No description provided.

@@ -243,7 +243,9 @@ public static <K, V> void consumeIfNotNull(K key, V value, BiConsumer<K, V> cons

ActivityResource activityResource = new ActivityResource();
activityResource.setId(r.get(ACTIVITY.ID));
activityResource.setUser(r.get(USERS.LOGIN));
activityResource.setUser(r.get(USERS.LOGIN) != null

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

@@ -243,7 +243,9 @@ public static <K, V> void consumeIfNotNull(K key, V value, BiConsumer<K, V> cons

ActivityResource activityResource = new ActivityResource();
activityResource.setId(r.get(ACTIVITY.ID));
activityResource.setUser(r.get(USERS.LOGIN));
activityResource.setUser(r.get(USERS.LOGIN) != null

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck> reported by reviewdog 🐶
'block' child has incorrect indentation level 16, expected level should be 10.

@@ -243,7 +243,9 @@ public static <K, V> void consumeIfNotNull(K key, V value, BiConsumer<K, V> cons

ActivityResource activityResource = new ActivityResource();
activityResource.setId(r.get(ACTIVITY.ID));
activityResource.setUser(r.get(USERS.LOGIN));
activityResource.setUser(r.get(USERS.LOGIN) != null
? r.get(USERS.LOGIN)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

activityResource.setUser(r.get(USERS.LOGIN));
activityResource.setUser(r.get(USERS.LOGIN) != null
? r.get(USERS.LOGIN)
: r.get(ACTIVITY.SUBJECT_NAME));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

@@ -791,13 +791,14 @@ public List<ActivityResource> activityStatistics(Filter filter, Sort sort, int l
ACTIVITY.PROJECT_ID,
ACTIVITY.OBJECT_ID,
ACTIVITY.OBJECT_NAME,
ACTIVITY.SUBJECT_NAME,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [reviewdog] <com.puppycrawl.tools.checkstyle.checks.whitespace.FileTabCharacterCheck> reported by reviewdog 🐶
Line contains a tab character.

@rkukharenka rkukharenka merged commit a9addae into develop Jul 14, 2023
3 checks passed
@rkukharenka rkukharenka deleted the EPMRPP-83651-DAO branch July 14, 2023 07:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants