Skip to content

Commit

Permalink
修复字段为泛型时,生成错误FieldInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
ktdynamic committed Jun 29, 2020
1 parent 8dcd06e commit ce9d82e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion litedb-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ publish {
userOrg = rootProject.userOrg//bintray.com用户名
groupId = rootProject.groupId//jcenter上的路径
uploadName = artifactId//项目名称
publishVersion = "1.1.0"//版本号
publishVersion = "1.1.2"//版本号
desc = "a easy db api to use for Android X "//项目介绍
website = rootProject.website//项目主页
licences = rootProject.licences
Expand Down
2 changes: 1 addition & 1 deletion litedb-api/src/main/java/com/jy/litedb/api/FieldInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package com.jy.litedb.api
*/
data class FieldInfo(
var name: String,
var type: Class<*>,
var type: Class<*>?,
var isPrimaryKey: Boolean,
var isAutoKey: Boolean,
var isUpdateField: Boolean,
Expand Down
2 changes: 1 addition & 1 deletion version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ext {
gson : "com.google.code.gson:gson:2.8.5",
litedb_annotation : 'com.jy.litedb:litedb-annotation:1.1.0',
litedb_compiler : 'com.jy.litedb:litedb-compiler:1.1.2',
litedb_api : 'com.jy.litedb:litedb-api:1.1.0'
litedb_api : 'com.jy.litedb:litedb-api:1.1.2'

]
}

0 comments on commit ce9d82e

Please sign in to comment.