# File lib/whois/record/parser/scanners/whois.nic.hu.rb, line 115
          def parse_contacts
            if @input.match?(/\n(person|org):/)
              p("whois.nic.hu: parse_contacts") if 1 == 2 || $DEBUG
              @input.scan(/\n/)
              while @input.match?(/(.+?):\s+(.*)\n/)
                parse_contact
              end
              true
            end
          end