Run dos2unix on all external source files

This commit is contained in:
Daniel Martí 2015-05-04 00:08:36 +02:00
parent 939efa5b17
commit 4a007698a6

View File

@ -1,49 +1,49 @@
/* /*
* Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de> * Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3 * as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version. * of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA. * MA 02110-1301, USA.
*/ */
package android.content.pm; package android.content.pm;
/** /**
* Just a non-working implementation of this Stub to satisfy compiler! * Just a non-working implementation of this Stub to satisfy compiler!
*/ */
public interface IPackageDeleteObserver extends android.os.IInterface { public interface IPackageDeleteObserver extends android.os.IInterface {
abstract class Stub extends android.os.Binder implements abstract class Stub extends android.os.Binder implements
android.content.pm.IPackageDeleteObserver { android.content.pm.IPackageDeleteObserver {
public Stub() { public Stub() {
throw new RuntimeException("Stub!"); throw new RuntimeException("Stub!");
} }
public static android.content.pm.IPackageDeleteObserver asInterface(android.os.IBinder obj) { public static android.content.pm.IPackageDeleteObserver asInterface(android.os.IBinder obj) {
throw new RuntimeException("Stub!"); throw new RuntimeException("Stub!");
} }
public android.os.IBinder asBinder() { public android.os.IBinder asBinder() {
throw new RuntimeException("Stub!"); throw new RuntimeException("Stub!");
} }
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply,
int flags) throws android.os.RemoteException { int flags) throws android.os.RemoteException {
throw new RuntimeException("Stub!"); throw new RuntimeException("Stub!");
} }
} }
void packageDeleted(java.lang.String packageName, int returnCode) void packageDeleted(java.lang.String packageName, int returnCode)
throws android.os.RemoteException; throws android.os.RemoteException;
} }