From 484aa4768f8830afd49a7f7e0a7f5dec0a663005 Mon Sep 17 00:00:00 2001 From: chris marget Date: Wed, 6 Feb 2019 13:58:26 -0500 Subject: [PATCH] Remove unused keyheader data type --- helper/ssh/key_pair.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/helper/ssh/key_pair.go b/helper/ssh/key_pair.go index f1f2c9ea0..f85d17dde 100644 --- a/helper/ssh/key_pair.go +++ b/helper/ssh/key_pair.go @@ -34,10 +34,6 @@ const ( // See the 'const' block for details. type KeyPairType string -// PrivateKeyHeader represents header text in PEM encoded private key files. -// See the 'const' block for details. -type PrivateKeyHeader string - func (o KeyPairType) String() string { return string(o) }