mirror of
https://github.com/SkinnyMind/libgit2dart.git
synced 2025-05-05 04:39:07 -04:00
style: avoid lines longer than 80 characters
This commit is contained in:
parent
a806d0a312
commit
7b14ee6b9b
76 changed files with 1246 additions and 972 deletions
|
@ -56,8 +56,9 @@ Pointer<git_signature> now({required String name, required String email}) {
|
|||
|
||||
/// Create a new action signature with default user and now timestamp.
|
||||
///
|
||||
/// This looks up the user.name and user.email from the configuration and uses the
|
||||
/// current time as the timestamp, and creates a new signature based on that information.
|
||||
/// This looks up the user.name and user.email from the configuration and uses
|
||||
/// the current time as the timestamp, and creates a new signature based on
|
||||
/// that information.
|
||||
Pointer<git_signature> defaultSignature(Pointer<git_repository> repo) {
|
||||
final out = calloc<Pointer<git_signature>>();
|
||||
libgit2.git_signature_default(out, repo);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue