-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: simplify SshnpDartSshKeyHandler
- Loading branch information
1 parent
0b28f8f
commit 4d7662f
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
5 changes: 2 additions & 3 deletions
5
...ges/noports_core/lib/src/sshnp/util/sshnp_ssh_key_handler/sshnp_dart_ssh_key_handler.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
import 'package:noports_core/sshnp_foundation.dart'; | ||
|
||
mixin SshnpDartSshKeyHandler on SshnpCore implements SshnpKeyHandler { | ||
mixin SshnpDartSshKeyHandler implements SshnpKeyHandler { | ||
@override | ||
DartSshKeyUtil get keyUtil => _sshKeyUtil; | ||
final DartSshKeyUtil _sshKeyUtil = DartSshKeyUtil(); | ||
|
||
@override | ||
AtSshKeyPair? get identityKeyPair => _identityKeyPair; | ||
AtSshKeyPair? _identityKeyPair; | ||
AtSshKeyPair? identityKeyPair; | ||
} |