1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-12-17 09:41:08 +01:00

Fix method name getCommentHeader

This commit is contained in:
Paul Schaub 2021-12-14 14:42:53 +01:00
parent bff2b3fbfe
commit 1681f3934f
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
2 changed files with 2 additions and 2 deletions

View file

@ -157,7 +157,7 @@ public final class ArmorUtils {
return armor;
}
public static List<String> getCommendHeaderValues(ArmoredInputStream armor) {
public static List<String> getCommentHeaderValues(ArmoredInputStream armor) {
return getArmorHeaderValues(armor, HEADER_COMMENT);
}