Skip to content
Snippets Groups Projects
Commit ab6b2d58 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Remove useless type tag

parent bf148fae
No related branches found
No related tags found
No related merge requests found
...@@ -88,7 +88,7 @@ object Common { ...@@ -88,7 +88,7 @@ object Common {
* @param tpe The type of the identifier * @param tpe The type of the identifier
* @param alwaysShowUniqueID If the unique ID should always be shown */ * @param alwaysShowUniqueID If the unique ID should always be shown */
def apply(name: String, tpe: TypeTree = Untyped, alwaysShowUniqueID: Boolean = false) : Identifier = def apply(name: String, tpe: TypeTree = Untyped, alwaysShowUniqueID: Boolean = false) : Identifier =
new Identifier(name, UniqueCounter.nextGlobal, UniqueCounter.next(name), tpe: TypeTree, alwaysShowUniqueID) new Identifier(name, UniqueCounter.nextGlobal, UniqueCounter.next(name), tpe, alwaysShowUniqueID)
/** Builds a fresh identifier, whose ID is always shown /** Builds a fresh identifier, whose ID is always shown
* @param name The name of the identifier * @param name The name of the identifier
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment