File tree 3 files changed +24
-2
lines changed
3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ IndentWidth : 4
2
+ ContinuationIndentWidth : 8
3
+ TabWidth : 4
4
+ UseTab : Always
5
+ ColumnLimit : 120
6
+ BreakBeforeBraces : Custom
7
+ BraceWrapping :
8
+ AfterClass : true
9
+ AfterEnum : true
10
+ AfterObjCDeclaration : true
11
+ AfterControlStatement : false
12
+ AfterFunction : true
13
+ AfterNamespace : true
14
+ AfterStruct : true
15
+ AfterUnion : true
16
+ BeforeCatch : false
17
+ BeforeElse : false
18
+ SpaceAfterCStyleCast : true
19
+ SpacesInContainerLiterals : false
20
+ BreakAfterJavaFieldAnnotations : true
21
+ AllowShortFunctionsOnASingleLine : false
22
+ KeepEmptyLinesAtTheStartOfBlocks : false
23
+ AlignAfterOpenBracket : DontAlign
Original file line number Diff line number Diff line change 5
5
screenshots /
6
6
logfiles /
7
7
roboviz.bat
8
- .clang-format
9
8
* .TMP
10
9
* .java- *
Original file line number Diff line number Diff line change @@ -595,7 +595,7 @@ private void cyclePlayers(int direction)
595
595
if (agent .getTeam ().getAgents ().size () <= 1 )
596
596
return ;
597
597
598
- Agent nextAgent = null ;
598
+ Agent nextAgent ;
599
599
int nextID = agent .getID ();
600
600
do {
601
601
nextID += direction ;
You can’t perform that action at this time.
0 commit comments