Skip to content

Commit 8cc3f7e

Browse files
authored
Merge pull request #1014 from mikepenz/develop
dev -> main
2 parents 4713bbe + bcc57ae commit 8cc3f7e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ It's blazing fast, minimizing the code you need to write, and is easy to extend.
4848

4949
## Latest releases 🛠
5050

51-
- Kotlin | [v5.5.0](https://github.com/mikepenz/FastAdapter/tree/v5.5.0)
51+
- Kotlin | [v5.5.1](https://github.com/mikepenz/FastAdapter/tree/v5.5.1)
5252
- Java && AndroidX | [v3.3.1](https://github.com/mikepenz/FastAdapter/tree/v3.3.1)
5353
- Java && AppCompat | [v3.2.9](https://github.com/mikepenz/FastAdapter/tree/v3.2.9)
5454

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ buildscript {
44

55
ext {
66
release = [
7-
versionName: "5.5.0",
8-
versionCode: 5050
7+
versionName: "5.5.1",
8+
versionCode: 5051
99
]
1010

1111
setup = [

fastadapter-extensions-swipe/src/main/java/com/mikepenz/fastadapter/swipe/Extensions.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import androidx.recyclerview.widget.ItemTouchHelper
88
internal fun ISwipeable.getSwipeDirs(dirs: Int): Int {
99
var directions = dirs
1010
if (!isDirectionSupported(ItemTouchHelper.LEFT)) {
11-
directions = dirs and ItemTouchHelper.LEFT.inv()
11+
directions = directions and ItemTouchHelper.LEFT.inv()
1212
}
1313
if (!isDirectionSupported(ItemTouchHelper.RIGHT)) {
14-
directions = dirs and ItemTouchHelper.RIGHT.inv()
14+
directions = directions and ItemTouchHelper.RIGHT.inv()
1515
}
1616
return directions
1717
}

0 commit comments

Comments
 (0)