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

Commit

Permalink
Merge pull request #314 from zanata/doctype-multiple-extensions
Browse files Browse the repository at this point in the history
rhbz980670 Allow document types to have multiple extensions
  • Loading branch information
carlosmunoz committed Dec 3, 2013
2 parents 69ab9e2 + 10bca09 commit 8f35f0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -31,7 +31,7 @@
<gwteventservice.version>1.2.1</gwteventservice.version>
<okapi.version>0.22</okapi.version>

<zanata.api.version>3.2.0</zanata.api.version>
<zanata.api.version>3.3.0-SNAPSHOT</zanata.api.version>
<!-- This should always be the previous version of the used api version above (but only 3.0.1 or later will work) -->
<zanata.api.compat.version>3.1.1</zanata.api.compat.version>
<zanata.client.version>3.3.0-SNAPSHOT</zanata.client.version>
Expand Down
Expand Up @@ -108,7 +108,7 @@ public class TranslationFileServiceImpl implements TranslationFileService {
private static Set<String> buildSupportedExtensionSet() {
Set<String> supported = new HashSet<String>();
for (DocumentType type : DOCTYPEMAP.keySet()) {
supported.add(type.getExtension());
supported.addAll(type.getExtensions());
}
return supported;
}
Expand Down

0 comments on commit 8f35f0a

Please sign in to comment.