Skip to content

Commit 78571a0

Browse files
committed
fix: smartrate namings
1 parent 12aa350 commit 78571a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/easypost/model/SmartRateCollection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public List<SmartRate> getSmartRates() {
2020
*
2121
* @param smartRates List of Smartrate objects.
2222
*/
23-
public void setSmartrates(final List<SmartRate> smartRates) {
23+
public void setSmartRates(final List<SmartRate> smartRates) {
2424
this.smartRates = smartRates;
2525
}
2626

@@ -37,7 +37,7 @@ public SmartRateCollection() {
3737
* @param smartRates List of Smartrate objects
3838
*/
3939
public SmartRateCollection(final List<SmartRate> smartRates) {
40-
setSmartrates(smartRates);
40+
setSmartRates(smartRates);
4141
}
4242

4343
/**

0 commit comments

Comments
 (0)