IOException is removed from CustomThymeleafNarrativeGenerator

This commit is contained in:
petromykhailyshyn 2014-10-30 16:59:10 +02:00
parent 10c49d2bd3
commit c474839f01
2 changed files with 2 additions and 9 deletions

View File

@ -20,7 +20,6 @@ package ca.uhn.fhir.narrative;
* #L% * #L%
*/ */
import java.io.IOException;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
@ -39,10 +38,8 @@ public class CustomThymeleafNarrativeGenerator extends BaseThymeleafNarrativeGen
* <li>file:/path/to/file/file.properties</li> * <li>file:/path/to/file/file.properties</li>
* <li>classpath:/com/package/file.properties</li> * <li>classpath:/com/package/file.properties</li>
* </ul> * </ul>
* @throws IOException
* If the file can not be found/read
*/ */
public CustomThymeleafNarrativeGenerator(String... thePropertyFile) throws IOException { public CustomThymeleafNarrativeGenerator(String... thePropertyFile) {
setPropertyFile(thePropertyFile); setPropertyFile(thePropertyFile);
} }
@ -55,8 +52,6 @@ public class CustomThymeleafNarrativeGenerator extends BaseThymeleafNarrativeGen
* <li>file:/path/to/file/file.properties</li> * <li>file:/path/to/file/file.properties</li>
* <li>classpath:/com/package/file.properties</li> * <li>classpath:/com/package/file.properties</li>
* </ul> * </ul>
* @throws IOException
* If the file can not be found/read
*/ */
public void setPropertyFile(String... thePropertyFile) { public void setPropertyFile(String... thePropertyFile) {
Validate.notNull(thePropertyFile, "Property file can not be null"); Validate.notNull(thePropertyFile, "Property file can not be null");

View File

@ -3,8 +3,6 @@ package ca.uhn.fhir.narrative;
import static org.hamcrest.Matchers.*; import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*; import static org.junit.Assert.*;
import java.io.IOException;
import org.junit.Test; import org.junit.Test;
import ca.uhn.fhir.model.dstu.composite.NarrativeDt; import ca.uhn.fhir.model.dstu.composite.NarrativeDt;
@ -15,7 +13,7 @@ public class CustomThymeleafNarrativeGeneratorTest {
private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(CustomThymeleafNarrativeGeneratorTest.class); private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(CustomThymeleafNarrativeGeneratorTest.class);
@Test @Test
public void testGenerator() throws IOException { public void testGenerator() {
CustomThymeleafNarrativeGenerator gen = new CustomThymeleafNarrativeGenerator("file:src/test/resources/narrative/customnarrative.properties"); CustomThymeleafNarrativeGenerator gen = new CustomThymeleafNarrativeGenerator("file:src/test/resources/narrative/customnarrative.properties");