Commit 80896f3a authored by DanFabulich's avatar DanFabulich
Browse files

1.0.1, now with correct visibility for gzip option

git-svn-id: https://sitemapgen4j.googlecode.com/svn/trunk@10 aa787bee-eda5-11dd-ada0-abde575de245
parent 7aafda96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  <groupId>com.redfin</groupId>
  <artifactId>sitemapgen4j</artifactId>
  <packaging>jar</packaging>
  <version>1.1-SNAPSHOT</version>
  <version>1.0.1</version>
  <name>SitemapGen4J</name>
  <build>
    <defaultGoal>install</defaultGoal>
+2 −2
Original line number Diff line number Diff line
@@ -58,12 +58,12 @@ abstract class AbstractSitemapGeneratorOptions<THIS extends AbstractSitemapGener
		return getThis();
	}
	/** Gzip the sitemaps after they are written to disk */
	THIS gzip(boolean gzip) {
	public THIS gzip(boolean gzip) {
		this.gzip = gzip;
		return getThis();
	}
	@SuppressWarnings("unchecked")
	public THIS getThis() {
	THIS getThis() {
		return (THIS)this;
	}
}
 No newline at end of file