Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Set default doc type map param to DEFAULTS
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Apr 15, 2016
1 parent 54e6d15 commit dab164b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -48,7 +48,7 @@ public class PushOptionsImpl extends AbstractPushPullOptionsImpl<PushOptions>

private ImmutableList<String> includes = ImmutableList.of();
private ImmutableList<String> excludes = ImmutableList.of();
private ImmutableList<String> fileTypes = ImmutableList.of();
private ImmutableList<String> fileTypes = ImmutableList.of("DEFAULTS");
private boolean listFileTypes = false;
private boolean defaultExcludes = DEF_EXCLUDES;
private String mergeType = DEF_MERGE_TYPE;
Expand Down
Expand Up @@ -110,10 +110,10 @@ public PushPullCommand<PushOptions> initCommand() {
* "file".
*
* @parameter expression="${zanata.fileTypes}"
* default-value="txt,dtd,odt,fodt,odp,fodp,ods,fods,odg,fodg,odf,odb"
* default-value="DEFAULTS"
*/
private String[] fileTypes =
"txt,dtd,odt,fodt,odp,fodp,ods,fods,odg,fodg,odf,odb".split(",");
"DEFAULTS".split(",");

/**
* Case sensitive for includes and excludes options.
Expand Down

0 comments on commit dab164b

Please sign in to comment.