Fix minor code-style error

A line was too long and some arguments were misaligned.

Test: None
Change-Id: I2c35698a88baca35bba4c23b1ade2272c776d56d
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc
index 3fc21d8..73b8166 100644
--- a/runtime/class_linker.cc
+++ b/runtime/class_linker.cc
@@ -4083,10 +4083,11 @@
   }
 }
 
-static void ThrowDexFileAlreadyRegisteredError(Thread* self, const DexFile& dex_file) REQUIRES_SHARED(Locks::mutator_lock_) {
+static void ThrowDexFileAlreadyRegisteredError(Thread* self, const DexFile& dex_file)
+    REQUIRES_SHARED(Locks::mutator_lock_) {
   self->ThrowNewExceptionF("Ljava/lang/InternalError;",
-                            "Attempt to register dex file %s with multiple class loaders",
-                            dex_file.GetLocation().c_str());
+                           "Attempt to register dex file %s with multiple class loaders",
+                           dex_file.GetLocation().c_str());
 }
 
 ObjPtr<mirror::DexCache> ClassLinker::RegisterDexFile(const DexFile& dex_file,