Skip to content

Commit f23584d

Browse files
committed
Add missing copyright
1 parent 340ec87 commit f23584d

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

lib/public/components/Filters/common/filters/ProcessedTextInputModel.js

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/**
2+
* @license
3+
* Copyright CERN and copyright holders of ALICE O2. This software is
4+
* distributed under the terms of the GNU General Public License v3 (GPL
5+
* Version 3), copied verbatim in the file "COPYING".
6+
*
7+
* See http://alice-o2.web.cern.ch/license for full licensing information.
8+
*
9+
* In applying this license CERN does not waive the privileges and immunities
10+
* granted to it by virtue of its status as an Intergovernmental Organization
11+
* or submit itself to any jurisdiction.
12+
*/
113
import { Observable } from '/js/src/index.js';
214

315
/**
@@ -60,7 +72,6 @@ export class ProcessedTextInputModel extends Observable {
6072
*/
6173
update(raw, parseValue = false) {
6274
this._raw = raw;
63-
6475
if (parseValue && this._parse) {
6576
try {
6677
const value = this._parse(raw);
@@ -74,7 +85,6 @@ export class ProcessedTextInputModel extends Observable {
7485
// For now, simply ignore the new value if invalid
7586
}
7687
}
77-
7888
this._visualChange$.notify();
7989
}
8090

0 commit comments

Comments
 (0)