Skip to content

Commit be623eb

Browse files
fix: 删除无用后缀
1 parent 3b4f65d commit be623eb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/main/java/com/fulinlin/constant/GitCommitConstants.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
**/
88
public class GitCommitConstants {
99

10-
public static final String ACTION_SUFFIX = " ";
11-
1210
public static final String ACTION_PREFIX = "$APP_CONFIG$/GitCommitMessageHelperSettings";
1311

1412
public static final String DEFAULT_TEMPLATE = "#if($type)${type}#end#if($scope)(${scope})#end: #if($subject)${subject}#end" +

src/main/java/com/fulinlin/storage/GitCommitMessageHelperSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @author: fulin
2323
* @create: 2019-12-05 21:13
2424
**/
25-
@State(name = "GitCommitMessageHelperSettings" + GitCommitConstants.ACTION_SUFFIX,
25+
@State(name = "GitCommitMessageHelperSettings",
2626
storages = {@Storage(value = GitCommitConstants.ACTION_PREFIX + "-settings.xml")})
2727
public class GitCommitMessageHelperSettings implements PersistentStateComponent<GitCommitMessageHelperSettings> {
2828
private static final Logger log = Logger.getInstance(GitCommitMessageHelperSettings.class);

0 commit comments

Comments
 (0)