blob: 79147f88491a066054eb52b24b536552160957cc [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// This program and the accompanying materials are made available
// under the terms of the Eclipse Public License v2.0 which accompanies
// this distribution, and is available at
// https://www.eclipse.org/legal/epl-2.0/
package org.eclipse.wst.jsdt.chromium.wip;
import org.eclipse.wst.jsdt.chromium.internal.wip.WipBackendImpl;
public class WipBackendFactory implements WipBackend.Factory {
@Override public WipBackend create() {
return new WipBackendImpl();
}
}