Skip to content

Commit

Permalink
Fix typos in method names.
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Jun 28, 2015
1 parent fb1997e commit 3162299
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public String getDescription(int tagType)
case CameraSettings.TAG_FOCUS_DISTANCE:
return getFocusDistanceDescription();
case CameraSettings.TAG_FLASH_FIRED:
return getFlastFiredDescription();
return getFlashFiredDescription();
case CameraSettings.TAG_DATE:
return getDateDescription();
case CameraSettings.TAG_TIME:
Expand All @@ -142,7 +142,7 @@ public String getDescription(int tagType)
case CameraSettings.TAG_SUBJECT_PROGRAM:
return getSubjectProgramDescription();
case CameraSettings.TAG_FLASH_COMPENSATION:
return getFlastCompensationDescription();
return getFlashCompensationDescription();
case CameraSettings.TAG_ISO_SETTING:
return getIsoSettingDescription();
case CameraSettings.TAG_CAMERA_MODEL:
Expand Down Expand Up @@ -357,7 +357,7 @@ public String getFocusDistanceDescription()
}

@Nullable
public String getFlastFiredDescription()
public String getFlashFiredDescription()
{
return getIndexedDescription(CameraSettings.TAG_FLASH_FIRED, "No", "Yes");
}
Expand Down Expand Up @@ -506,7 +506,7 @@ public String getSubjectProgramDescription()
}

@Nullable
public String getFlastCompensationDescription()
public String getFlashCompensationDescription()
{
Long value = _directory.getLongObject(CameraSettings.TAG_FLASH_COMPENSATION);
DecimalFormat format = new DecimalFormat("0.##");
Expand Down

0 comments on commit 3162299

Please sign in to comment.