Skip to content
This repository was archived by the owner on Feb 1, 2021. It is now read-only.

Commit 15fe0aa

Browse files
committed
rename of some fields in List<> to plural
1 parent 52d3f7a commit 15fe0aa

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/com/podio/contact/ContactCreate.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ public ContactCreate(String name) {
118118

119119
public ContactCreate(String name, Integer avatar, LocalDate birthdate,
120120
String organization, String department, String skype, String about,
121-
List<String> address, String zip, String city, String state,
122-
String country, List<String> location, List<String> mail,
123-
List<String> phone, List<String> title, String linkedin,
124-
String twitter, List<String> url, List<String> skill) {
121+
List<String> addresses, String zip, String city, String state,
122+
String country, List<String> locations, List<String> mails,
123+
List<String> phones, List<String> titles, String linkedin,
124+
String twitter, List<String> urls, List<String> skills) {
125125
super();
126126

127127
this.name = name;
@@ -131,19 +131,19 @@ public ContactCreate(String name, Integer avatar, LocalDate birthdate,
131131
this.department = department;
132132
this.skype = skype;
133133
this.about = about;
134-
this.addresses = address;
134+
this.addresses = addresses;
135135
this.zip = zip;
136136
this.city = city;
137137
this.state = state;
138138
this.country = country;
139-
this.locations = location;
140-
this.mails = mail;
141-
this.phones = phone;
142-
this.titles = title;
139+
this.locations = locations;
140+
this.mails = mails;
141+
this.phones = phones;
142+
this.titles = titles;
143143
this.linkedin = linkedin;
144144
this.twitter = twitter;
145-
this.urls = url;
146-
this.skills = skill;
145+
this.urls = urls;
146+
this.skills = skills;
147147
}
148148

149149
public String getName() {

0 commit comments

Comments
 (0)