aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBananeweizen <Bananeweizen@gmx.de>2013-07-28 18:07:50 +0200
committerBananeweizen <Bananeweizen@gmx.de>2013-07-28 18:07:50 +0200
commit24413415dd85f5c4da3f86c98ec6c78fec0f257d (patch)
treebd4d13a8d46eae4393ce0f07c0a1702833dc698a
parent51e61f7b36a731ce7ed4087fbe38642687be0321 (diff)
downloadcgeo-24413415dd85f5c4da3f86c98ec6c78fec0f257d.zip
cgeo-24413415dd85f5c4da3f86c98ec6c78fec0f257d.tar.gz
cgeo-24413415dd85f5c4da3f86c98ec6c78fec0f257d.tar.bz2
refactoring: remove author tags from source
* recommended best practice for open source projects to foster community aspect * alternative of documenting each author everywhere is hard to maintain * git blame can be used more easily anyway
-rw-r--r--main/src/cgeo/geocaching/settings/EditPasswordPreference.java1
-rw-r--r--main/src/cgeo/geocaching/settings/SettingsActivity.java1
-rw-r--r--main/src/cgeo/geocaching/utils/FileUtils.java2
-rw-r--r--tests/src/cgeo/geocaching/settings/TestSettings.java2
-rw-r--r--tests/src/cgeo/geocaching/test/RegExPerformanceTest.java4
-rw-r--r--tests/src/cgeo/geocaching/test/RegExRealPerformanceTest.java4
6 files changed, 2 insertions, 12 deletions
diff --git a/main/src/cgeo/geocaching/settings/EditPasswordPreference.java b/main/src/cgeo/geocaching/settings/EditPasswordPreference.java
index d89f128..20d0250 100644
--- a/main/src/cgeo/geocaching/settings/EditPasswordPreference.java
+++ b/main/src/cgeo/geocaching/settings/EditPasswordPreference.java
@@ -10,7 +10,6 @@ import android.util.AttributeSet;
* Use it exactly as an EditTextPreference
*
* @see SettingsActivity - search for EditPasswordPreference
- * @author koem
*/
public class EditPasswordPreference extends EditTextPreference {
diff --git a/main/src/cgeo/geocaching/settings/SettingsActivity.java b/main/src/cgeo/geocaching/settings/SettingsActivity.java
index 7c0da1e..aa0848a 100644
--- a/main/src/cgeo/geocaching/settings/SettingsActivity.java
+++ b/main/src/cgeo/geocaching/settings/SettingsActivity.java
@@ -57,7 +57,6 @@ import java.util.List;
* guidelines and the <a href="http://developer.android.com/guide/topics/ui/settings.html">Settings API Guide</a> for
* more information on developing a Settings UI.
*
- * @author koem (initial author)
*/
public class SettingsActivity extends PreferenceActivity {
diff --git a/main/src/cgeo/geocaching/utils/FileUtils.java b/main/src/cgeo/geocaching/utils/FileUtils.java
index 9951af1..0b358d2 100644
--- a/main/src/cgeo/geocaching/utils/FileUtils.java
+++ b/main/src/cgeo/geocaching/utils/FileUtils.java
@@ -12,8 +12,6 @@ import java.util.List;
/**
* Utility class for files
*
- * @author rsudev
- *
*/
public final class FileUtils {
diff --git a/tests/src/cgeo/geocaching/settings/TestSettings.java b/tests/src/cgeo/geocaching/settings/TestSettings.java
index 6585ee4..6c31dcc 100644
--- a/tests/src/cgeo/geocaching/settings/TestSettings.java
+++ b/tests/src/cgeo/geocaching/settings/TestSettings.java
@@ -4,8 +4,6 @@ package cgeo.geocaching.settings;
/**
* provide write-access proxy to settings for testing purposes
*
- * @author rschuman
- *
*/
public class TestSettings {
diff --git a/tests/src/cgeo/geocaching/test/RegExPerformanceTest.java b/tests/src/cgeo/geocaching/test/RegExPerformanceTest.java
index 03ca18f..7c3b195 100644
--- a/tests/src/cgeo/geocaching/test/RegExPerformanceTest.java
+++ b/tests/src/cgeo/geocaching/test/RegExPerformanceTest.java
@@ -16,10 +16,8 @@ import junit.framework.TestCase;
/**
* Test class to compare the performance of two regular expressions on given data.
- * Can be used to improve the time needed to parse the cache data
+ * Can be used to improve the time needed to parse the cache data.
* Run As "JUnit Test"
- *
- * @author blafoo
*/
public class RegExPerformanceTest extends TestCase {
diff --git a/tests/src/cgeo/geocaching/test/RegExRealPerformanceTest.java b/tests/src/cgeo/geocaching/test/RegExRealPerformanceTest.java
index 1793722..fd47e5b 100644
--- a/tests/src/cgeo/geocaching/test/RegExRealPerformanceTest.java
+++ b/tests/src/cgeo/geocaching/test/RegExRealPerformanceTest.java
@@ -8,9 +8,7 @@ import java.util.List;
/**
* Test class to compare the performance of two regular expressions on given data.
- * Can be used to improve the time needed to parse the cache data
- *
- * @author blafoo
+ * Can be used to improve the time needed to parse the cache data.
*/
public class RegExRealPerformanceTest extends AndroidTestCase {