Changeset 19399 in josm


Ignore:
Timestamp:
2025-05-06T17:35:07+02:00 (4 days ago)
Author:
stoecker
Message:

fix some forgotten since xxx

Location:
trunk/src/org/openstreetmap/josm
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/IPrimitive.java

    r19366 r19399  
    3939     * Set the status of the referrers
    4040     * @param referrersDownloaded {@code true} if all referrers for this object have been downloaded
    41      * @since xxx
     41     * @since 19078
    4242     */
    4343    default void setReferrersDownloaded(boolean referrersDownloaded) {
     
    8888     * @return {@code true} if the primitive is fully downloaded and all parents and children should be available.
    8989     * {@code false} otherwise.
    90      * @since xxx
     90     * @since 19078
    9191     */
    9292    default boolean isReferrersDownloaded() {
  • trunk/src/org/openstreetmap/josm/data/osm/MultipolygonBuilder.java

    r19336 r19399  
    164164     * @return a pair of outer and inner multipolygon rings.
    165165     * @throws JoinedPolygonCreationException if the creation fails.
    166      * @since xxx
     166     * @since 19336
    167167     */
    168168    public static Pair<List<JoinedPolygon>, List<JoinedPolygon>> joinWays(
  • trunk/src/org/openstreetmap/josm/gui/animation/BirthdayExtension.java

    r19254 r19399  
    2323 * Birthday animation game extension.
    2424 * @author Pauline Thiele
    25  * @since xxx
     25 * @since 19254
    2626 */
    2727public class BirthdayExtension extends JPanel implements AnimationExtension, MouseListener, MouseMotionListener {
  • trunk/src/org/openstreetmap/josm/gui/dialogs/relation/IRelationEditor.java

    r19398 r19399  
    5252     * @param ignoreUninterestingTags whether to ignore uninteresting tag changes
    5353     * @return true if the currently edited relation has been changed elsewhere.
    54      * @since xxx
     54     * @since 19398
    5555     */
    5656    boolean isDirtyRelation(boolean ignoreUninterestingTags);
     
    6262     *
    6363     * @return true if the currently edited relation has been changed in the editor.
    64      * @since xxx
     64     * @since 19398
    6565     */
    6666    boolean isDirtyEditor();
  • trunk/src/org/openstreetmap/josm/io/BoundingBoxDownloader.java

    r19080 r19399  
    302302     * Get the bounds for this downloader
    303303     * @return The bounds for this downloader
    304      * @since xxx
     304     * @since 19078
    305305     */
    306306    protected Collection<Bounds> getBounds() {
  • trunk/src/org/openstreetmap/josm/tools/Geometry.java

    r19336 r19399  
    12331233     * @param cache The cache to avoid calculating joined inner/outer ways multiple times (see {@link MultipolygonBuilder#joinWays(Relation)})
    12341234     * @return a new list containing the found primitives, empty if multipolygon is invalid or nothing was found.
    1235      * @since xxx
     1235     * @since 19336
    12361236     */
    12371237    public static List<IPrimitive> filterInsideMultipolygon(Collection<IPrimitive> primitives, Relation multiPolygon,
Note: See TracChangeset for help on using the changeset viewer.