Move tags into subdirectory

This commit is contained in:
Pieter Vander Vennet 2021-03-29 00:41:53 +02:00
parent 3b08e7324b
commit 120832f241
18 changed files with 25 additions and 28 deletions

View file

@ -4,9 +4,9 @@ import {Utils} from "../../Utils";
import {UIEventSource} from "../UIEventSource";
import Constants from "../../Models/Constants";
import FeatureSource from "../FeatureSource/FeatureSource";
import {TagsFilter} from "../TagsFilter";
import {Tag} from "../Tag";
import {And} from "../And";
import {TagsFilter} from "../Tags/TagsFilter";
import {Tag} from "../Tags/Tag";
import {And} from "../Tags/And";
/**
* Handles all changes made to OSM.

View file

@ -1,4 +1,4 @@
import {Utils} from "../Utils";
import {Utils} from "../../Utils";
import {RegexTag} from "./RegexTag";
import {TagsFilter} from "./TagsFilter";
import {TagUtils} from "./TagUtils";

View file

@ -1,7 +1,7 @@
import {Tag} from "./Tag";
import {TagsFilter} from "./TagsFilter";
import {And} from "./And";
import {Utils} from "../Utils";
import {Utils} from "../../Utils";
export class TagUtils {
static ApplyTemplate(template: string, tags: any): string {