Replace Throwables.propagate with equivalent "throw e" or "throw new RuntimeException(e)."

We are removing all calls in preparation for deleting the method.

More information: []

Tested:
    TAP --sample for global presubmit queue
    []
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=117628955
This commit is contained in:
kak 2016-03-19 09:40:50 -07:00 committed by Justine Tunney
parent 980625f901
commit 0db3e13ef3
4 changed files with 5 additions and 10 deletions

View file

@ -20,7 +20,6 @@ import static com.google.domain.registry.xml.ValidationMode.STRICT;
import static java.nio.charset.StandardCharsets.UTF_8;
import com.google.common.base.Joiner;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.io.Closer;
@ -91,7 +90,7 @@ public class XmlTransformer {
this.jaxbContext = JAXBContext.newInstance(recognizedClasses);
this.schema = loadXmlSchemas(schemaFilenames);
} catch (JAXBException e) {
throw Throwables.propagate(e);
throw new RuntimeException(e);
}
}
@ -108,7 +107,7 @@ public class XmlTransformer {
this.jaxbContext = initJaxbContext(pakkage, schemaNamesToFilenames.keySet());
this.schema = loadXmlSchemas(ImmutableList.copyOf(schemaNamesToFilenames.values()));
} catch (JAXBException e) {
throw Throwables.propagate(e);
throw new RuntimeException(e);
}
}