Skip to content

Commit b3c0884

Browse files
committed
[Java] Reduce scope and warnings.
1 parent e29469b commit b3c0884

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sbe-tool/src/test/java/uk/co/real_logic/sbe/generation/rust/RustGeneratorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
public class RustGeneratorTest
2424
{
25-
public static final String BROAD_USE_CASES_SCHEMA = "code-generation-schema";
26-
public static final String BASIC_TYPES_SCHEMA = "basic-types-schema";
27-
public static final String NESTED_GROUP_SCHEMA = "nested-group-schema";
25+
private static final String BROAD_USE_CASES_SCHEMA = "code-generation-schema";
26+
private static final String BASIC_TYPES_SCHEMA = "basic-types-schema";
27+
private static final String NESTED_GROUP_SCHEMA = "nested-group-schema";
2828
private SingleStringOutputManager outputManager;
2929

3030
@Rule
@@ -36,7 +36,7 @@ public void setUp()
3636
outputManager = new SingleStringOutputManager();
3737
}
3838

39-
public static Ir generateIrForResource(final String localResourceName)
39+
private static Ir generateIrForResource(final String localResourceName)
4040
{
4141
final ParserOptions options = ParserOptions.builder().stopOnError(true).build();
4242
final String xmlLocalResourceName = localResourceName.endsWith(".xml") ? localResourceName :

0 commit comments

Comments
 (0)