Skip to content

Commit

Permalink
Code style refactoring and added instructions on how to do it on README
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Oct 21, 2019
1 parent d21b178 commit 00b2ee2
Show file tree
Hide file tree
Showing 188 changed files with 16,105 additions and 16,259 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ Feel free to add yourself to [contributors.md](https://github.com/federicoiosue/

This kind of contributions **must** have screenshots or screencast as demonstration of the new additions.

### Code style

If you plan to manipulate the code then you'll have to do it by following a [specific code style](https://gist.github.com/federicoiosue/dee53e882b3c70d544f8608769eb02fc).
Also pay attention if you're using any plugin that automatically formats/cleans/rearrange your code and set it to only change that code that you touched and not the whole files.

### Test your code contributions!

All code changes and additions **must** be tested.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@

package it.feio.android.omninotes.helpers;

import android.content.Context;

import io.nlopez.smartlocation.location.LocationProvider;


public class GeocodeProviderFactory extends GeocodeProviderBaseFactory {

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

public interface Constants extends ConstantsBase {

String TAG = "Omni Notes Alpha";
String EXTERNAL_STORAGE_FOLDER = "Omni Notes Alpha";
String PACKAGE = "it.feio.android.omninotes.alpha";
String PREFS_NAME = PACKAGE + "_preferences";
String TAG = "Omni Notes Alpha";
String EXTERNAL_STORAGE_FOLDER = "Omni Notes Alpha";
String PACKAGE = "it.feio.android.omninotes.alpha";
String PREFS_NAME = PACKAGE + "_preferences";

}
Loading

0 comments on commit 00b2ee2

Please sign in to comment.