@@ -91,7 +91,7 @@ public class Player {
9191 private boolean isLegacyPlayer ;
9292 private ArrayList minions ;
9393 private ArrayList mounts ;
94- private Date imgLastModified ;
94+ private Date dateImgLastModified ;
9595
9696 /**
9797 * Constructor for player object.
@@ -160,7 +160,7 @@ public Player(int id) {
160160 setHasCompletedHW (false );
161161 setHasCompleted3pt1 (false );
162162 setHasCompleted3pt3 (false );
163- setImgLastModified (new Date ());
163+ setDateImgLastModified (new Date ());
164164 }
165165
166166 /**
@@ -1665,10 +1665,10 @@ public void setHasCompleted3pt3(boolean hasCompleted3pt3) {
16651665
16661666 /**
16671667 * Set the date on which the player's avatar was last modified
1668- * @param imgLastModified the date on which the player's avatar was last modified
1668+ * @param dateImgLastModified the date on which the player's avatar was last modified
16691669 */
1670- public void setImgLastModified (Date imgLastModified ) {
1671- this .imgLastModified = imgLastModified ;
1670+ public void setDateImgLastModified (Date dateImgLastModified ) {
1671+ this .dateImgLastModified = dateImgLastModified ;
16721672 }
16731673
16741674 /**
@@ -1845,7 +1845,7 @@ public static Player getPlayer(int playerID) throws Exception {
18451845 player .setGender (getGenderFromPage (doc ));
18461846 player .setGrandCompany (getGrandCompanyFromPage (doc ));
18471847 player .setFreeCompany (getFreeCompanyFromPage (doc ));
1848- player .setImgLastModified (getDateLastUpdatedFromPage (doc ));
1848+ player .setDateImgLastModified (getDateLastUpdatedFromPage (doc ));
18491849 player .setLevels (getLevelsFromPage (doc ));
18501850 player .setMounts (getMountsFromPage (doc ));
18511851 player .setMinions (getMinionsFromPage (doc ));
@@ -2128,7 +2128,7 @@ private static Date getDateLastUpdatedFromPage(Document doc) throws Exception {
21282128 * Get the date on which the Character's full body image was last modified
21292129 * @return the date on which the Character's full body image was last modified
21302130 */
2131- public Date getImgLastModified () {
2132- return imgLastModified ;
2131+ public Date getDateImgLastModified () {
2132+ return dateImgLastModified ;
21332133 }
21342134}
0 commit comments