From 4a7be787698608af487dbe4ae124d5bb541eb84c Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Sat, 14 Apr 2012 21:00:25 +0200 Subject: refactoring: encapsulate exports * no more public classes, only ExportFactory * exports can be garbage collected immediately after use --- main/src/cgeo/geocaching/export/Export.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main/src/cgeo/geocaching/export/Export.java') diff --git a/main/src/cgeo/geocaching/export/Export.java b/main/src/cgeo/geocaching/export/Export.java index 700c752..7a2b075 100644 --- a/main/src/cgeo/geocaching/export/Export.java +++ b/main/src/cgeo/geocaching/export/Export.java @@ -7,12 +7,12 @@ import android.app.Activity; import java.util.List; /** - * Represent an exporter to export a {@link List} of {@link cgCache} to various formats. + * Represents an exporter to export a {@link List} of {@link cgCache} to various formats. */ -public interface Export { +interface Export { /** * Export a {@link List} of {@link cgCache} to various formats. - * + * * @param caches * The {@link List} of {@link cgCache} to be exported * @param activity -- cgit v1.1