From 194fb63d85e456576c2d57468b723fe021c0ecd3 Mon Sep 17 00:00:00 2001 From: Kevin Sangeelee Date: Wed, 26 Feb 2020 23:26:47 +0000 Subject: [PATCH] Update README.md add import to API example --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 00aaa15..af034ce 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,9 @@ when processing large numbers of URLs. The API to check the host/domain part of a URL is: - ``` - // public_suffix_list.dat comes from https://publicsuffix.org/ + import net.susa.cfs.psl.PublicSuffixList; + // public_suffix_list.dat comes from https://publicsuffix.org/ String filename = "public_suffix_list.dat"; PublicSuffixList psl = new PublicSuffixList(filename);