Skip to content

Commit

Permalink
Merge pull request #43 from qiaoyuang/main
Browse files Browse the repository at this point in the history
Optimize the sqllin-procrssor's process
  • Loading branch information
qiaoyuang authored Aug 25, 2023
2 parents 7fa91bb + 727f27c commit dfeecde
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sqllin-driver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ publishing {
artifact(javadocJar)
with(pom) {
name.set(artifactId)
description.set("Low-level API for SQLite in Kotlin Multiplatform")
description.set("Low-level API for SQLite on Kotlin Multiplatform")
val githubURL: String by project
url.set(githubURL)
licenses {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import platform.Foundation.create

/**
* The tools with Apple platforms implementation
* @author yqiao
* @author yaqiao
*/

@OptIn(ExperimentalForeignApi::class, BetaInteropApi::class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import kotlinx.cinterop.toKString

/**
* The tools with Linux implementation
* @author yqiao
* @author yaqiao
*/

@OptIn(ExperimentalForeignApi::class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import kotlinx.cinterop.toKStringFromUtf8

/**
* The tools with Windows implementation
* @author yqiao
* @author yaqiao
*/

@OptIn(ExperimentalForeignApi::class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import kotlinx.cinterop.ExperimentalForeignApi

/**
* The tools with platform-specific implementation
* @author yqiao
* @author yaqiao
*/

@OptIn(ExperimentalForeignApi::class)
Expand Down
2 changes: 1 addition & 1 deletion sqllin-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ publishing {
artifact(javadocJar)
with(pom) {
name.set(artifactId)
description.set("SQL DSL API for SQLite in Kotlin Multiplatform")
description.set("SQL DSL APIs for SQLite on Kotlin Multiplatform")
val githubURL: String by project
url.set(githubURL)
licenses {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class ClauseProcessor(
}?.arguments?.first()?.value?.takeIf { (it as? String)?.isNotBlank() == true } ?: className

val outputStream = environment.codeGenerator.createNewFile(
dependencies = Dependencies(true, classDeclaration.containingFile!!),
dependencies = classDeclaration.containingFile?.let { Dependencies(true, it) } ?: Dependencies(true),
packageName = packageName,
fileName = objectName,
)
Expand Down

0 comments on commit dfeecde

Please sign in to comment.