You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A robust, powerful, and very simple ORM android database library with **annotation processing**.
6
6
@@ -41,7 +41,7 @@ Add the library to the project-level build.gradle, using the apt plugin to enabl
41
41
42
42
```groovy
43
43
44
-
def dbflow_version = "4.0.4"
44
+
def dbflow_version = "4.0.5"
45
45
// or dbflow_version = "develop-SNAPSHOT" for grabbing latest dependency in your project on the develop branch
46
46
// or 10-digit short-hash of a specific commit. (Useful for bugs fixed in develop, but not in a release yet)
47
47
@@ -83,7 +83,7 @@ Add the library to the project-level build.gradle, using the apt plugin to enabl
83
83
84
84
# Pull Requests
85
85
I welcome and encourage all pull requests. It usually will take me within 24-48 hours to respond to any issue or request. Here are some basic rules to follow to ensure timely addition of your request:
86
-
1. Match coding style (braces, spacing, etc.) This is best achieved using CMD+Option+L (Reformat code) on Mac (not sure for Windows) with Android Studio defaults.
86
+
1. Match coding style (braces, spacing, etc.) This is best achieved using **Reformat Code** shortcut, <kbd>command</kbd>+<kbd>option</kbd>+<kbd>L</kbd> on Mac and <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>L</kbd> on Windows, with Android Studio defaults.
87
87
2. If its a feature, bugfix, or anything please only change code to what you specify.
88
88
3. Please keep PR titles easy to read and descriptive of changes, this will make them easier to merge :)
89
89
4. Pull requests _must_ be made against `develop` branch. Any other branch (unless specified by the maintainers) will get rejected.
Copy file name to clipboardExpand all lines: dbflow-processor/src/main/java/com/raizlabs/android/dbflow/processor/definition/TableEndpointDefinition.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ class TableEndpointDefinition(typeElement: Element, processorManager: ProcessorM
Copy file name to clipboardExpand all lines: dbflow-processor/src/main/java/com/raizlabs/android/dbflow/processor/definition/column/ColumnAccessCombiner.kt
+36-23
Original file line number
Diff line number
Diff line change
@@ -34,10 +34,16 @@ abstract class ColumnAccessCombiner(val combiner: Combiner) {
0 commit comments