Skip to content

Commit

Permalink
Merge pull request #11904 from nextcloud/dependabot/gradle/com.github…
Browse files Browse the repository at this point in the history
….spotbugs.snom-spotbugs-gradle-plugin-5.1.3

Build(deps): Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.1.2 to 5.1.3
  • Loading branch information
AndyScherzinger authored Aug 17, 2023
2 parents 82d3430 + 502844d commit 6df8206
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.gradle.internal.jvm.Jvm
buildscript {
dependencies {
classpath "com.android.tools.build:gradle:$androidPluginVersion"
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.1.2'
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.1"
classpath "commons-httpclient:commons-httpclient:3.1@jar" // remove after entire switch to lib v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ class SharedListFragment : OCFileListFragment(), Injectable {
lifecycleScope.launch {
isLoading = true
if (partialFiles != null) {
val files = partialFiles.toMutableSet().mapNotNull {partialFile ->
fetchFileData(partialFile).also {fetched ->
val files = partialFiles.toMutableSet().mapNotNull { partialFile ->
fetchFileData(partialFile).also { fetched ->
if (fetched == null) {
DisplayUtils.showSnackMessage(requireActivity(), R.string.error_retrieving_file)
}
Expand Down Expand Up @@ -176,7 +176,7 @@ class SharedListFragment : OCFileListFragment(), Injectable {
override fun onFileActionChosen(itemId: Int, checkedFiles: MutableSet<OCFile>?): Boolean {
// fetch all files and run selected action
if (itemId != R.id.action_select_all_action_menu && itemId != R.id.action_deselect_all_action_menu) {
fetchAllAndRun(checkedFiles) {files ->
fetchAllAndRun(checkedFiles) { files ->
exitSelectionMode()
super.onFileActionChosen(itemId, files)
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/analysis/lint-results.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
DO NOT TOUCH; GENERATED BY DRONE
<span class="mdl-layout-title">Lint Report: 79 warnings</span>
<span class="mdl-layout-title">Lint Report: 80 warnings</span>

0 comments on commit 6df8206

Please sign in to comment.