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
This commit is contained in:
parent
7aafda96f9
commit
80896f3ac5
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<groupId>com.redfin</groupId>
|
<groupId>com.redfin</groupId>
|
||||||
<artifactId>sitemapgen4j</artifactId>
|
<artifactId>sitemapgen4j</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.1-SNAPSHOT</version>
|
<version>1.0.1</version>
|
||||||
<name>SitemapGen4J</name>
|
<name>SitemapGen4J</name>
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>install</defaultGoal>
|
<defaultGoal>install</defaultGoal>
|
||||||
|
|
|
@ -58,12 +58,12 @@ abstract class AbstractSitemapGeneratorOptions<THIS extends AbstractSitemapGener
|
||||||
return getThis();
|
return getThis();
|
||||||
}
|
}
|
||||||
/** Gzip the sitemaps after they are written to disk */
|
/** Gzip the sitemaps after they are written to disk */
|
||||||
THIS gzip(boolean gzip) {
|
public THIS gzip(boolean gzip) {
|
||||||
this.gzip = gzip;
|
this.gzip = gzip;
|
||||||
return getThis();
|
return getThis();
|
||||||
}
|
}
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
public THIS getThis() {
|
THIS getThis() {
|
||||||
return (THIS)this;
|
return (THIS)this;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue