This repository was archived by the owner on Dec 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
libraries/bot-builder/src/main/java/com/microsoft/bot/builder Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 85
85
86
86
<module name =" SuppressWarningsFilter" />
87
87
88
+ <module name =" LineLength" >
89
+ <property name =" max" value =" 120" />
90
+ </module >
91
+
88
92
<module name =" TreeWalker" >
89
93
<!-- check for usage of literal equality "==" between string -->
90
94
<module name =" StringLiteralEquality" />
125
129
</module >
126
130
127
131
<!-- Checks for Size Violations. -->
128
- <!-- See http://checkstyle.sourceforge.net/config_sizes.html -->
129
- <module name =" LineLength" >
130
- <property name =" max" value =" 120" />
131
- </module >
132
+ <!-- See http://checkstyle.sourceforge.net/config_sizes.html -->
132
133
<module name =" MethodLength" />
133
134
<module name =" ParameterNumber" />
134
135
Original file line number Diff line number Diff line change @@ -57,12 +57,12 @@ public void setService(T withService) {
57
57
this .service = withService ;
58
58
}
59
59
60
- @ Override
61
60
/**
62
61
* Adds the associated object or service to the current turn context.
63
62
* @param turnContext The context object for this turn.
64
63
* @param next The delegate to call to continue the bot middleware pipeline.
65
64
*/
65
+ @ Override
66
66
public CompletableFuture <Void > onTurn (TurnContext turnContext , NextDelegate next ) {
67
67
if (!StringUtils .isBlank (key )) {
68
68
turnContext .getTurnState ().add (key , service );
Original file line number Diff line number Diff line change 18
18
<jdk .version>1.8</jdk .version>
19
19
<maven .compiler.target>1.8</maven .compiler.target>
20
20
<maven .compiler.source>1.8</maven .compiler.source>
21
- <checkstyle .version>3.1.0 </checkstyle .version>
21
+ <checkstyle .version>3.1.2 </checkstyle .version>
22
22
<pmd .version>3.14.0</pmd .version>
23
23
<exclude .tests>%regex[.*recognizers.*]</exclude .tests>
24
24
<!-- <repo.id>MyGet</repo.id> -->
You can’t perform that action at this time.
0 commit comments