Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created November 30, 2019 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/ef9dd13a82024d8e1044992be563b64a to your computer and use it in GitHub Desktop.
Save ssaurel/ef9dd13a82024d8e1044992be563b64a to your computer and use it in GitHub Desktop.
Out object for the Backlink Checker in Java
package com.ssaurel.mycrawler;
public class Out {
public String href;
public String anchor;
public Out(String h, String a) {
href = h;
anchor = a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment