Delete copypasta comments

This commit is contained in:
eyedeekay
2025-02-01 22:19:19 -05:00
parent a5e36235d5
commit 978adf77ea
6 changed files with 10 additions and 6 deletions

View File

@@ -8,7 +8,6 @@ import (
"github.com/magiconair/properties"
)
// Example Java properties parser
func (c *Converter) parseJavaProperties(input []byte) (*TunnelConfig, error) {
p := properties.MustLoadString(string(input))
@@ -27,7 +26,7 @@ func (c *Converter) parseJavaProperties(input []byte) (*TunnelConfig, error) {
return config, nil
}
func (c *Converter) parsePropertyKey(k string, s string, config *TunnelConfig) {
func (c *Converter) parsePropertyKey(k, s string, config *TunnelConfig) {
if strings.HasPrefix(k, "#") {
return
}