mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-25 17:30:12 +00:00
Compare commits
4 Commits
024b50fadc
...
1087877a2d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1087877a2d | ||
|
|
95998ff3f2 | ||
|
|
02c51c8978 | ||
|
|
58d5cc1ca6 |
4
.github/dependabot.yaml
vendored
4
.github/dependabot.yaml
vendored
@@ -5,8 +5,10 @@ updates:
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly" # Check for updates to GitHub Actions every week
|
||||
cooldown:
|
||||
default-days: 14 # Wait 14 days before creating another PR for the same dependency. This will prevent vulnerability on the package impact.
|
||||
ignore:
|
||||
# I just want update action when major/minor version is updated. patch updates are too noisy.
|
||||
- dependency-name: '*'
|
||||
- dependency-name: "*"
|
||||
update-types:
|
||||
- version-update:semver-patch
|
||||
|
||||
@@ -854,7 +854,7 @@ namespace Cysharp.Threading.Tasks
|
||||
Action<Exception> exceptionHandler = null;
|
||||
bool isStarted = false;
|
||||
UniTask<T> task;
|
||||
object current = null;
|
||||
T? current = null;
|
||||
ExceptionDispatchInfo exception;
|
||||
|
||||
public ToCoroutineEnumerator(UniTask<T> task, Action<T> resultHandler, Action<Exception> exceptionHandler)
|
||||
@@ -893,7 +893,7 @@ namespace Cysharp.Threading.Tasks
|
||||
}
|
||||
}
|
||||
|
||||
public object Current => current;
|
||||
public T? Current => current;
|
||||
|
||||
public bool MoveNext()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user