blob: b7a5633fe02b3936fc24b2b6eb8f274c34fe4fec [file] [log] [blame]
// Copyright (c) 2023, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.threading.providers.singlethreaded;
import com.android.tools.r8.threading.ThreadingModule;
import com.android.tools.r8.threading.ThreadingModuleProvider;
public class ThreadingModuleSingleThreadedProvider implements ThreadingModuleProvider {
@Override
public ThreadingModule create() {
return new ThreadingModuleSingleThreaded();
}
}