Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions packages/dart/lib/src/network/parse_websocket_html.dart
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion packages/dart/lib/src/objects/parse_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ abstract class ParseBase {
Map<String, dynamic> toPointer() => encodeObject(parseClassName, objectId!);

/// Set the [ParseACL] governing this object.
void setACL<ParseACL>(ParseACL acl) {
void setACL<T>(T acl) {
set(keyVarAcl, acl);
}

Expand Down