Skip to content

Commit

Permalink
suppress kotlin script package directory warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Apr 25, 2023
1 parent c708815 commit 9ee97d9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ jobs:
jcenter.bintray.com:443
lightbend.github.io:443
objects.githubusercontent.com:443
packages.jetbrains.team:443
plugins.gradle.org:443
plugins.jetbrains.com:443
plugins-artifacts.gradle.org:443
prod.fus.aws.intellij.net:443
production.cloudflare.docker.com:443
registry-1.docker.io:443
repo.gradle.org:443
repo.maven.apache.org:443
repo1.maven.org:443
resources.jetbrains.com:443
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* This package contains in-memory caching functionality. All cache variants are configured and
* created by using the {@link com.github.benmanes.caffeine.cache.Caffeine} builder.
* <p>
* A {@link Cache} provides similar characteristics as
* A {@link com.github.benmanes.caffeine.cache.Cache} provides similar characteristics as
* {@link java.util.concurrent.ConcurrentHashMap} with additional support for policies to bound the
* map by. When built with a {@link com.github.benmanes.caffeine.cache.CacheLoader}, the
* {@link com.github.benmanes.caffeine.cache.LoadingCache} variant allows the cache to populate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public void setStatisticsEnabled(boolean enabled) {
delegate.setStatisticsEnabled(enabled);
}

/** See {@link MutableConfiguration#isManagementEnabled}. */
/** See {@link CompleteConfiguration#isManagementEnabled}. */
@Override
public boolean isManagementEnabled() {
return delegate.isManagementEnabled();
Expand Down
1 change: 1 addition & 0 deletions qodana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ exclude:
- name: NullableProblems
- name: OptionalAssignedToNull
- name: OptionalUsedAsFieldOrParameterType
- name: PackageDirectoryMismatch
- name: RedundantCollectionOperation
- name: RedundantUnmodifiable
- name: ReplaceAssignmentWithOperatorAssignment
Expand Down

0 comments on commit 9ee97d9

Please sign in to comment.