1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-07-31 15:24:23 +03:00

Remove ancient "use strict" annotations

We don't need these anymore. Theoretically this commit could go to develop, but for safety it's going to `travis/sourcemaps` first.
This commit is contained in:
Travis Ralston
2019-12-17 15:38:18 -07:00
parent f3a10a8166
commit f952f6742f
62 changed files with 14 additions and 68 deletions

View File

@ -25,7 +25,6 @@ limitations under the License.
* See also `megolm.spec.js`.
*/
"use strict";
import 'source-map-support/register';
// load olm before the sdk if possible

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import * as utils from "../test-utils";
import {TestClient} from "../TestClient";

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import * as utils from "../test-utils";
import {EventTimeline} from "../../src/matrix";

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import * as utils from "../test-utils";
import {CRYPTO_ENABLED} from "../../src/client";

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import * as utils from "../test-utils";
import HttpBackend from "matrix-mock-request";

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import {EventStatus} from "../../src/matrix";
import {MatrixScheduler} from "../../src/scheduler";

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import * as utils from "../test-utils";
import {EventStatus} from "../../src/models/event";

View File

@ -1,4 +1,3 @@
"use strict";
import 'source-map-support/register';
import {MatrixEvent} from "../../src/models/event";
import {EventTimeline} from "../../src/models/event-timeline";

View File

@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
"use strict";
import anotherjson from "another-json";
import * as utils from "../../src/utils";
import * as testUtils from "../test-utils";