Skip to content

Commit

Permalink
refactor: simplify SshnpDartSshKeyHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Nov 21, 2023
1 parent 0b28f8f commit 4d7662f
Showing 1 changed file with 2 additions and 3 deletions.
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;
}

0 comments on commit 4d7662f

Please sign in to comment.