Merge pull request #5857 from dbartol/container/work

Java: Fix QLDoc for `Container.toString()`
This commit is contained in:
Anders Schack-Mulligen
2021-05-11 08:37:41 +02:00
committed by GitHub

View File

@@ -146,9 +146,11 @@ class Container extends @container, Top {
}
/**
* Gets a textual representation of the path of this container.
* Gets a textual representation of this container.
*
* This is the absolute path of the container.
* The default implementation gets the absolute path to the container, but subclasses may override
* to provide a different result. To get the absolute path of any `Container`, call
* `Container.getAbsolutePath()` directly.
*/
override string toString() { result = getAbsolutePath() }
}