-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #778 from lonvia/clean-code-smells
Clean up comments and fix some code smells
- Loading branch information
Showing
73 changed files
with
489 additions
and
512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
package de.komoot.photon; | ||
|
||
/** | ||
* interface for bulk imports from a data source like nominatim | ||
* | ||
* @author felix | ||
* Interface for bulk imports from a data source like nominatim | ||
*/ | ||
public interface Importer { | ||
/** | ||
* a new document was imported | ||
* | ||
* @param doc | ||
* Add a new document to the Photon database. | ||
*/ | ||
public void add(PhotonDoc doc, int object_id); | ||
public void add(PhotonDoc doc, int objectId); | ||
|
||
/** | ||
* import is finished | ||
* Finish up the import. | ||
*/ | ||
public void finish(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.