diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4228b49..ed70d02b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,13 +113,11 @@ jobs: uses: subosito/flutter-action@v2 with: channel: "beta" - cache: true - name: Setup flutter if: ${{ matrix.sdk != 'beta' }} uses: subosito/flutter-action@v2 with: flutter-version: ${{ matrix.sdk }} - cache: true - name: Install dependencies on Ubuntu and MacOS if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' run: (cd packages/flutter && flutter pub get) diff --git a/packages/dart/lib/src/network/parse_websocket_html.dart b/packages/dart/lib/src/network/parse_websocket_html.dart index 37555327..5a397592 100644 --- a/packages/dart/lib/src/network/parse_websocket_html.dart +++ b/packages/dart/lib/src/network/parse_websocket_html.dart @@ -1,6 +1,7 @@ /// If you change this file, you should apply the same changes to the 'parse_websocket_io.dart' file library; +// ignore: deprecated_member_use import 'dart:html' as html; import 'package:web_socket_channel/html.dart'; diff --git a/packages/dart/lib/src/objects/parse_base.dart b/packages/dart/lib/src/objects/parse_base.dart index 00134fe4..96c1e638 100644 --- a/packages/dart/lib/src/objects/parse_base.dart +++ b/packages/dart/lib/src/objects/parse_base.dart @@ -317,7 +317,7 @@ abstract class ParseBase { Map toPointer() => encodeObject(parseClassName, objectId!); /// Set the [ParseACL] governing this object. - void setACL(ParseACL acl) { + void setACL(T acl) { set(keyVarAcl, acl); }