Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stop sugarrecords from interacting with other libs #258

Closed
wants to merge 36 commits into from
Closed
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9307e8c
First page commit
satyan Sep 15, 2011
3fd478a
page commit
satyan Sep 15, 2011
52fa820
changed layout
satyan Sep 15, 2011
8a112a3
changed layout
satyan Sep 15, 2011
9074a5a
modified extra sugar
Aug 20, 2012
8d2c4ff
test checkin
Oct 29, 2012
2bf87d8
changed layout
Oct 30, 2012
1b33017
removed bootstrap
Nov 1, 2012
dac94ca
added content for entity
Nov 2, 2012
30dd532
changed favicon
Dec 13, 2012
c5da71b
Update getting-started.html
satyan Mar 8, 2013
8f49c9a
Update creation.html
satyan Mar 8, 2013
06d26c0
Update index.html
satyan Mar 8, 2013
1fd2013
Update query.html
satyan Mar 8, 2013
46692ff
tracking stuff
Mar 13, 2013
44516ab
added migrations doc
Jun 17, 2013
ef08ff1
added migration html
Jun 17, 2013
bf176f0
added query builder
Jun 17, 2013
c720507
about section added
Jun 18, 2013
7b84c4e
about added
Jun 18, 2013
305f26d
added fork me on github
Jun 18, 2013
a33bb04
modified typo
Jun 24, 2013
805fbaf
added ignore field
Jun 26, 2013
375e873
Update some pages on the website
breber Aug 17, 2013
c56e0f5
Merge pull request #35 from breber/update-pages
satyan Aug 18, 2013
e1cdcef
Update website to bootstrap 3 and jekyll
breber Aug 25, 2013
7ba251a
Update styling of side bar
breber Aug 26, 2013
1b4d272
Add the example CSS
breber Aug 31, 2013
a34b37e
Add a DOCTYPE to fix scrollspy issues
breber Aug 31, 2013
4973c87
Update the fork button
breber Aug 31, 2013
ded1b35
Merge pull request #40 from breber/gh-pages
satyan Sep 1, 2013
90817ff
update to release 1.3
Jul 4, 2014
1d4c207
Stop sugarrecords from interacting with other libs
nosrak113 Feb 4, 2015
23c28f8
test
nosrak113 Feb 4, 2015
c3e4cdc
Update README.md
nosrak113 Feb 4, 2015
b6f7f00
Update README.md
nosrak113 Feb 4, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/src/com/orm/SugarRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

public class SugarRecord {

protected Long id = null;
private Long id = null;

public static <T> void deleteAll(Class<T> type) {
SugarDb db = getSugarContext().getSugarDb();
Expand Down