Skip to content

Commit

Permalink
initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
kingdom2011 committed May 11, 2019
1 parent 3c2c5ba commit 16a2760
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class AlarmIntents
this.context = context;
}

public AlarmIntents from(@NonNull Context context)
public static AlarmIntents from(@NonNull Context context)
{
return new AlarmIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class BrowserIntents
this.context = context;
}

public BrowserIntents from(@NonNull Context context)
public static BrowserIntents from(@NonNull Context context)
{
return new BrowserIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class CalculatorIntents
this.context = context;
}

public CalculatorIntents from(@NonNull Context context)
public static CalculatorIntents from(@NonNull Context context)
{
return new CalculatorIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class CalendarIntents
this.context = context;
}

public CalendarIntents from(@NonNull Context context)
public static CalendarIntents from(@NonNull Context context)
{
return new CalendarIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class CameraIntents
this.context = context;
}

public CameraIntents from(@NonNull Context context)
public static CameraIntents from(@NonNull Context context)
{
return new CameraIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ContactsIntents
this.context = context;
}

public ContactsIntents from(@NonNull Context context)
public static ContactsIntents from(@NonNull Context context)
{
return new ContactsIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ private GeoIntents(@NonNull Context context)
this.context = context;
}

public GeoIntents from(@NonNull Context context)
public static GeoIntents from(@NonNull Context context)
{
return new GeoIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private MarketIntents(@NonNull Context context)
this.context = context;
}

public MarketIntents from(@NonNull Context context)
public static MarketIntents from(@NonNull Context context)
{
return new MarketIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private MediaIntents(@NonNull Context context)
this.context = context;
}

public MediaIntents from(@NonNull Context context)
public static MediaIntents from(@NonNull Context context)
{
return new MediaIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ private PhoneIntents(@NonNull Context context)
this.context = context;
}

public PhoneIntents from(@NonNull Context context)
public static PhoneIntents from(@NonNull Context context)
{
return new PhoneIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private SearchIntents(@NonNull Context context)
this.context = context;
}

public SearchIntents from(@NonNull Context context)
public static SearchIntents from(@NonNull Context context)
{
return new SearchIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ private ShareIntents(@NonNull Context context)
this.context = context;
}

public ShareIntents from(@NonNull Context context)
public static ShareIntents from(@NonNull Context context)
{
return new ShareIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class TextIntents
this.context = context;
}

public TextIntents from(@NonNull Context context)
public static TextIntents from(@NonNull Context context)
{
return new TextIntents(context);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class TimerIntents
this.context = context;
}

public TimerIntents from(@NonNull Context context)
public static TimerIntents from(@NonNull Context context)
{
return new TimerIntents(context);
}
Expand Down

0 comments on commit 16a2760

Please sign in to comment.