Skip to content

Commit 16a2760

Browse files
committed
initial commit.
1 parent 3c2c5ba commit 16a2760

14 files changed

+14
-14
lines changed

Library/src/main/java/com/next/androidintentlibrary/AlarmIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class AlarmIntents
5151
this.context = context;
5252
}
5353

54-
public AlarmIntents from(@NonNull Context context)
54+
public static AlarmIntents from(@NonNull Context context)
5555
{
5656
return new AlarmIntents(context);
5757
}

Library/src/main/java/com/next/androidintentlibrary/BrowserIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class BrowserIntents
2020
this.context = context;
2121
}
2222

23-
public BrowserIntents from(@NonNull Context context)
23+
public static BrowserIntents from(@NonNull Context context)
2424
{
2525
return new BrowserIntents(context);
2626
}

Library/src/main/java/com/next/androidintentlibrary/CalculatorIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class CalculatorIntents
1616
this.context = context;
1717
}
1818

19-
public CalculatorIntents from(@NonNull Context context)
19+
public static CalculatorIntents from(@NonNull Context context)
2020
{
2121
return new CalculatorIntents(context);
2222
}

Library/src/main/java/com/next/androidintentlibrary/CalendarIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class CalendarIntents
1616
this.context = context;
1717
}
1818

19-
public CalendarIntents from(@NonNull Context context)
19+
public static CalendarIntents from(@NonNull Context context)
2020
{
2121
return new CalendarIntents(context);
2222
}

Library/src/main/java/com/next/androidintentlibrary/CameraIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class CameraIntents
2626
this.context = context;
2727
}
2828

29-
public CameraIntents from(@NonNull Context context)
29+
public static CameraIntents from(@NonNull Context context)
3030
{
3131
return new CameraIntents(context);
3232
}

Library/src/main/java/com/next/androidintentlibrary/ContactsIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class ContactsIntents
2222
this.context = context;
2323
}
2424

25-
public ContactsIntents from(@NonNull Context context)
25+
public static ContactsIntents from(@NonNull Context context)
2626
{
2727
return new ContactsIntents(context);
2828
}

Library/src/main/java/com/next/androidintentlibrary/GeoIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private GeoIntents(@NonNull Context context)
2121
this.context = context;
2222
}
2323

24-
public GeoIntents from(@NonNull Context context)
24+
public static GeoIntents from(@NonNull Context context)
2525
{
2626
return new GeoIntents(context);
2727
}

Library/src/main/java/com/next/androidintentlibrary/MarketIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private MarketIntents(@NonNull Context context)
2222
this.context = context;
2323
}
2424

25-
public MarketIntents from(@NonNull Context context)
25+
public static MarketIntents from(@NonNull Context context)
2626
{
2727
return new MarketIntents(context);
2828
}

Library/src/main/java/com/next/androidintentlibrary/MediaIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private MediaIntents(@NonNull Context context)
2424
this.context = context;
2525
}
2626

27-
public MediaIntents from(@NonNull Context context)
27+
public static MediaIntents from(@NonNull Context context)
2828
{
2929
return new MediaIntents(context);
3030
}

Library/src/main/java/com/next/androidintentlibrary/PhoneIntents.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ private PhoneIntents(@NonNull Context context)
2323
this.context = context;
2424
}
2525

26-
public PhoneIntents from(@NonNull Context context)
26+
public static PhoneIntents from(@NonNull Context context)
2727
{
2828
return new PhoneIntents(context);
2929
}

0 commit comments

Comments
 (0)