Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit e454c7b

Browse files
committed
Add back deleted property
1 parent f834958 commit e454c7b

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/thebluealliance/api/v3/models/SimpleTeam.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,6 @@ public class SimpleTeam {
3737
/**
3838
* @return Official team number issued by FIRST.
3939
*/
40+
41+
int team_number;
4042
}

src/main/java/com/thebluealliance/api/v3/models/Team.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
public class Team extends SimpleTeam {
1414

1515
Team() throws IllegalAccessException {
16-
super(null, null, null, null, null, null);
16+
super(null, null, null, null, null, null, 0);
1717
throw new IllegalAccessException("You've called the constructor of Team");
1818
}
1919

0 commit comments

Comments
 (0)