Skip to content

Commit ddd3d86

Browse files
committed
Refactor inspection display names
1 parent 5ccc416 commit ddd3d86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/kotlin/org/domaframework/doma/intellij/inspection/dao/inspector/DaoMethodReturnTypeVariableInspection.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import com.intellij.psi.PsiElementVisitor
2222
import org.domaframework.doma.intellij.inspection.dao.visitor.DaoMethodReturnTypeVariableInspectionVisitor
2323

2424
class DaoMethodReturnTypeVariableInspection : AbstractBaseJavaLocalInspectionTool() {
25-
override fun getDisplayName(): String = "."
25+
override fun getDisplayName(): String = "Check return type variable of DAO method"
2626

2727
override fun getShortName(): String = "org.domaframework.doma.intellij.returnType"
2828

src/main/kotlin/org/domaframework/doma/intellij/inspection/dao/inspector/SqlFileExistInspection.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import org.domaframework.doma.intellij.inspection.dao.visitor.SqlFileExistInspec
2525
* Check for existence of SQL file
2626
*/
2727
class SqlFileExistInspection : AbstractBaseJavaLocalInspectionTool() {
28-
override fun getDisplayName(): String = "Ensure the existence of SQL files for DAO methods."
28+
override fun getDisplayName(): String = "Check existence of SQL file"
2929

3030
override fun getShortName(): String = "org.domaframework.doma.intellij.existsqlchecker"
3131

0 commit comments

Comments
 (0)