Skip to content

Commit

Permalink
Rename package crawlercommons.url crawler-commons#107
Browse files Browse the repository at this point in the history
  • Loading branch information
jnioche committed Dec 3, 2015
1 parent f3f3484 commit 347f50c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Crawler-Commons Change Log

Current Development 0.7-SNAPSHOT
- Issue 107: Rename package crawlercommons.url (jnioche)
- Issue 92: Deprecate HTTP fetcher support (kkrugler)
- Issue 106: Added URLFilter interface + BasicURLNormalizer (jnioche)
- Issue 100: Updated tld names from publicsuffix.org (jnioche)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package crawlercommons.url;
package crawlercommons.domains;

import java.io.BufferedReader;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package crawlercommons.url;
package crawlercommons.domains;

import java.net.URL;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
-->
<html>
<body>
Classes contained within the url package relate to the definition of Top Level
Classes contained within the domains package relate to the definition of Top Level
Domain's, various domain registrars and the effective handling of such domains.
</body>
<html>
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@
* limitations under the License.
*/

package crawlercommons.url;
package crawlercommons.domains;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import crawlercommons.url.EffectiveTldFinder.EffectiveTLD;
import org.junit.Test;

import crawlercommons.domains.EffectiveTldFinder;
import crawlercommons.domains.EffectiveTldFinder.EffectiveTLD;

public class EffectiveTldFinderTest {

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package crawlercommons.url;
package crawlercommons.domains;

import static org.junit.Assert.assertEquals;

Expand All @@ -26,6 +26,8 @@

import org.junit.Test;

import crawlercommons.domains.PaidLevelDomain;

public class PaidLevelDomainTest {

@Test
Expand Down

0 comments on commit 347f50c

Please sign in to comment.