aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/export
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2015-03-17 08:37:59 +0100
committerSamuel Tardieu <sam@rfc1149.net>2015-03-17 08:41:06 +0100
commitb2ffc2581c6630e313c4e623d0a40c8846e1e975 (patch)
tree6859e456fdb42e6468558883761c1de40b458c80 /main/src/cgeo/geocaching/export
parent9119639276a00ef17d3ffa1a5fad0c37c1bebd78 (diff)
downloadcgeo-b2ffc2581c6630e313c4e623d0a40c8846e1e975.zip
cgeo-b2ffc2581c6630e313c4e623d0a40c8846e1e975.tar.gz
cgeo-b2ffc2581c6630e313c4e623d0a40c8846e1e975.tar.bz2
Add missing final qualifiers in main module
Diffstat (limited to 'main/src/cgeo/geocaching/export')
-rw-r--r--main/src/cgeo/geocaching/export/AbstractExport.java4
-rw-r--r--main/src/cgeo/geocaching/export/FieldNotes.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/export/AbstractExport.java b/main/src/cgeo/geocaching/export/AbstractExport.java
index 5d15ecb..94d0506 100644
--- a/main/src/cgeo/geocaching/export/AbstractExport.java
+++ b/main/src/cgeo/geocaching/export/AbstractExport.java
@@ -22,7 +22,7 @@ abstract class AbstractExport implements Export {
* the resource id of the string
* @return localized string
*/
- protected static String getString(int resourceId) {
+ protected static String getString(final int resourceId) {
return CgeoApplication.getInstance().getString(resourceId);
}
@@ -35,7 +35,7 @@ abstract class AbstractExport implements Export {
* The parameter
* @return localized string
*/
- protected static String getString(int resourceId, Object... params) {
+ protected static String getString(final int resourceId, final Object... params) {
return CgeoApplication.getInstance().getString(resourceId, params);
}
diff --git a/main/src/cgeo/geocaching/export/FieldNotes.java b/main/src/cgeo/geocaching/export/FieldNotes.java
index 11d725a..fdc6210 100644
--- a/main/src/cgeo/geocaching/export/FieldNotes.java
+++ b/main/src/cgeo/geocaching/export/FieldNotes.java
@@ -41,7 +41,7 @@ class FieldNotes {
return buffer.toString();
}
- File writeToDirectory(File exportLocation) {
+ File writeToDirectory(final File exportLocation) {
if (!LocalStorage.isExternalStorageAvailable()) {
return null;
}