Removed last private for the tests

This commit is contained in:
vzhang03 2024-07-08 16:57:15 -04:00
parent a41f18ed61
commit a909c85e34

View File

@ -61,7 +61,7 @@ export default class JsPsychMetadata {
* @param {string} key - Metadata field name * @param {string} key - Metadata field name
* @param {*} value - Data associated with the field * @param {*} value - Data associated with the field
*/ */
private setMetadataField(key: string, value: any): void { setMetadataField(key: string, value: any): void {
this.metadata[key] = value; this.metadata[key] = value;
} }