Skip to content

Commit

Permalink
Fix whitespaces and package name
Browse files Browse the repository at this point in the history
  • Loading branch information
michalchudziak committed Apr 1, 2019
1 parent 70fe4fa commit 61657ab
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -438,4 +438,4 @@ private boolean isSameProvider(String provider1, String provider2) {
return provider1.equals(provider2);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.modules.location;
package com.reactnativecommunity.geolocation;

import com.facebook.react.bridge.Arguments;
import com.facebook.react.bridge.WritableMap;
Expand Down Expand Up @@ -39,7 +39,7 @@ public static WritableMap buildError(int code, String message) {
if (message != null) {
error.putString("message", message);
}

/**
* Provide error types in error message. Feature parity with iOS
*/
Expand Down
2 changes: 1 addition & 1 deletion example/GeolocationExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ const styles = StyleSheet.create({
title: {
fontWeight: '500',
},
});
});
2 changes: 1 addition & 1 deletion ios/RNCGeolocation.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@

@interface RNCGeolocation : RCTEventEmitter

@end
@end
2 changes: 1 addition & 1 deletion ios/RNCGeolocation.m
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,4 @@ static void checkLocationConfig()
#endif
}

@end
@end
2 changes: 1 addition & 1 deletion js/__tests__/Geolocation-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ describe('react-native-geolocation', () => {
);
expect(mockWarningCallback.mock.calls.length).toBeGreaterThanOrEqual(1);
});
});
});
2 changes: 1 addition & 1 deletion js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,4 @@ const Geolocation = {
},
};

module.exports = Geolocation;
module.exports = Geolocation;

0 comments on commit 61657ab

Please sign in to comment.