cleanup work

This commit is contained in:
eugenp 2014-10-21 12:42:06 +03:00
parent 7bff6bbb06
commit 6e16b3352c
1 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,6 @@
package org.baeldung.jackson.sandbox;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
@ -17,7 +18,12 @@ public class JacksonPrettyPrintUnitTest {
@Test
public final void whenDeserializing_thenCorrect() throws JsonParseException, JsonMappingException, IOException {
printJsonFromFile("/opt/git/github/eugenp/tutorials/jackson/src/main/resources/example1.json");
// final String fileName = "src/main/resources/example1.json";
final String fileName = "src/main/resources/example1.json";
new File(fileName);
printJsonFromFile(fileName);
}
//