rspec/rules/S2737/java/code-example.adoc

12 lines
197 B
Plaintext
Raw Normal View History

[source,java]
----
public String readFile(File f) throws IOException {
String content;
try {
content = readFromDisk(f);
} catch (IOException e) {
throw e;
}
return content;
}
----