Fix 1 ErrorProneStyle finding:
* Constructors and methods with the same name should appear sequentially with no other code in between. Please re-order or re-name methods.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=280437487
diff --git a/jimfs/src/test/java/com/google/common/jimfs/AbstractAttributeProviderTest.java b/jimfs/src/test/java/com/google/common/jimfs/AbstractAttributeProviderTest.java
index 0dac6ec..7e2bdf9 100644
--- a/jimfs/src/test/java/com/google/common/jimfs/AbstractAttributeProviderTest.java
+++ b/jimfs/src/test/java/com/google/common/jimfs/AbstractAttributeProviderTest.java
@@ -104,15 +104,15 @@
     assertSetAndGetSucceeds(attribute, value, false);
   }
 
-  protected void assertSetAndGetSucceedsOnCreate(String attribute, Object value) {
-    assertSetAndGetSucceeds(attribute, value, true);
-  }
-
   protected void assertSetAndGetSucceeds(String attribute, Object value, boolean create) {
     provider.set(file, provider.name(), attribute, value, create);
     assertThat(provider.get(file, attribute)).isEqualTo(value);
   }
 
+  protected void assertSetAndGetSucceedsOnCreate(String attribute, Object value) {
+    assertSetAndGetSucceeds(attribute, value, true);
+  }
+
   @SuppressWarnings("EmptyCatchBlock")
   protected void assertSetFails(String attribute, Object value) {
     try {