Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused await code #7542

Closed
wants to merge 1 commit into from
Closed

Conversation

drown0315
Copy link

@drown0315 drown0315 commented Jun 28, 2024

Remove some unused await code

before:

  Future<int> _stopDaemon() async {
    if (Platform.isWindows) {
      return await exec('.\\third_party\\gradlew.bat', ['--stop']);
    } else {
      return await exec('./third_party/gradlew', ['--stop']);
    }
  }

after:

  Future<int> _stopDaemon() {
    if (Platform.isWindows) {
      return exec('.\\third_party\\gradlew.bat', ['--stop']);
    } else {
      return exec('./third_party/gradlew', ['--stop']);
    }
  }

Pre-launch Checklist

  • I read the Contributor Guide and followed the process outlined there for submitting PRs.
  • I read the Tree Hygiene wiki page, which explains my responsibilities.
  • I read the Flutter Style Guide recently, and have followed its advice.
  • I signed the CLA.
  • I listed at least one issue that this PR fixes in the description above.
  • I updated/added relevant documentation (doc comments with ///).
  • I added new tests to check the change I am making, or this PR is test-exempt.
  • All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel on Discord.

@jwren jwren self-requested a review July 2, 2024 16:39
Copy link
Member

@jwren jwren left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the PR!

@goderbauer
Copy link
Member

goderbauer commented Sep 3, 2024

(triage) @drown0315 github is complaining that your commit is not signed and that's why merging it is blocked. Could you take a look and fix that? See also https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification

@drown0315
Copy link
Author

Thank for reply, I'll take care of that later.

@drown0315
Copy link
Author

(triage) @drown0315 github is complaining that your commit is not signed and that's why merging it is blocked. Could you take a look and fix that? See also https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification

It's ok!

@chunhtai
Copy link

(triage) looks like there is some conflict. Hi @drown0315, can you resolve the merge conflict?

@drown0315 drown0315 closed this Jan 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants