Skip to content

Commit

Permalink
Test008: make 2 private methods static
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 24, 2025
1 parent 522d2b3 commit fbae2a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/testjoltjni/junit/Test008.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void test008() {
/**
* Test the {@code Mat44} class.
*/
private void testMat44() {
private static void testMat44() {
// Create an uninitialized matrix:
Mat44 uninit = new Mat44();

Expand Down Expand Up @@ -118,7 +118,7 @@ private void testMat44() {
/**
* Test the {@code RMat44} class.
*/
private void testRMat44() {
private static void testRMat44() {
// Create an uninitialized matrix:
RMat44 uninit = new RMat44();

Expand Down

0 comments on commit fbae2a1

Please sign in to comment.