We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74296e0 commit eb235a0Copy full SHA for eb235a0
2 files changed
.github/workflows/format.yaml
@@ -0,0 +1,14 @@
1
+name: format and commit all java files
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - 'steffen'
8
9
+jobs:
10
+ formatting:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: axel-op/googlejavaformat-action@v3
java2/generics/genericteam/Team.java
@@ -20,7 +20,7 @@ public void printTeamName() {
20
21
public void printPlayerNames() {
22
for (T player : players) {
23
- System.out.println(player.name) // Problem
+ System.out.println(player.name); // Problem
24
}
25
26
0 commit comments