[
https://issues.apache.org/jira/browse/GORA-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15298163#comment-15298163
]
Hudson commented on GORA-465:
-----------------------------
SUCCESS: Integrated in gora-trunk #1650 (See
[https://builds.apache.org/job/gora-trunk/1650/])
GORA-465 remove deprecated logic (cguzelg: rev
1ce9a887a93006180ea19b00b28473acde4c8b05)
* gora-core/src/main/java/org/apache/gora/store/ws/impl/WSDataStoreFactory.java
* gora-core/src/main/java/org/apache/gora/store/DataStoreFactory.java
* gora-hbase/src/main/java/org/apache/gora/hbase/store/HBaseStore.java
> Remove @Deprecated logic for hbase-mapping.xml
> ----------------------------------------------
>
> Key: GORA-465
> URL: https://issues.apache.org/jira/browse/GORA-465
> Project: Apache Gora
> Issue Type: Test
> Components: gora-hbase
> Affects Versions: 0.6.1
> Reporter: Lewis John McGibbney
> Assignee: cihad güzel
> Priority: Trivial
> Fix For: 0.7
>
>
> We have some useless checking and log statements in HBaseStore which relate
> to a very old hbase-mapping.xml.
> These should just be removed.
> {code}
> @Deprecated
> private static final String DEPRECATED_MAPPING_FILE = "hbase-mapping.xml";
> ...
> try {
> mapping = readMapping(getConf().get(PARSE_MAPPING_FILE_KEY,
> DEPRECATED_MAPPING_FILE));
> LOG.warn("{} is deprecated, please rename the file to {}",
> DEPRECATED_MAPPING_FILE, DEFAULT_MAPPING_FILE);
> } catch (FileNotFoundException ex1) {
> LOG.error(ex1.getMessage(), ex1);
> //throw (ex1); //throw the original exception
> } catch (Exception ex1) {
> LOG.warn("{} is deprecated, please rename the file to {}",
> DEPRECATED_MAPPING_FILE, DEFAULT_MAPPING_FILE);
> throw new RuntimeException(ex1);
> }
> {code}
> etc
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)