Merge pull request #13011 from kaspersv/kaspersv/explicit-this-receivers-shared2

JS, Python, Ruby: Make implicit this receivers explicit
This commit is contained in:
Erik Krogh Kristensen
2023-05-03 15:34:59 +02:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ private CryptographicAlgorithm getBestAlgorithmForName(string name) {
*/
abstract class CryptographicAlgorithm extends TCryptographicAlgorithm {
/** Gets a textual representation of this element. */
string toString() { result = getName() }
string toString() { result = this.getName() }
/**
* Gets the normalized name of this algorithm (upper-case, no spaces, dashes or underscores).