Skip to content

Commit 2779add

Browse files
committed
Fix view on Github link
1 parent 6f0e284 commit 2779add

34 files changed

+35
-35
lines changed

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/AnotherBarActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
134134
switch (item.getItemId()) {
135135
case R.id.viewGithub: {
136136
Intent i = new Intent(Intent.ACTION_VIEW);
137-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/AnotherBarActivity.java"));
137+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/AnotherBarActivity.java"));
138138
startActivity(i);
139139
break;
140140
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
211211
switch (item.getItemId()) {
212212
case R.id.viewGithub: {
213213
Intent i = new Intent(Intent.ACTION_VIEW);
214-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/BarChartActivity.java"));
214+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartActivity.java"));
215215
startActivity(i);
216216
break;
217217
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartActivityMultiDataset.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
204204
switch (item.getItemId()) {
205205
case R.id.viewGithub: {
206206
Intent i = new Intent(Intent.ACTION_VIEW);
207-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/BarChartActivityMultiDataset.java"));
207+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartActivityMultiDataset.java"));
208208
startActivity(i);
209209
break;
210210
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartActivitySinus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
152152
switch (item.getItemId()) {
153153
case R.id.viewGithub: {
154154
Intent i = new Intent(Intent.ACTION_VIEW);
155-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/BarChartActivitySinus.java"));
155+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartActivitySinus.java"));
156156
startActivity(i);
157157
break;
158158
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartPositiveNegative.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
186186
switch (item.getItemId()) {
187187
case R.id.viewGithub: {
188188
Intent i = new Intent(Intent.ACTION_VIEW);
189-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/BarChartPositiveNegative.java"));
189+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BarChartPositiveNegative.java"));
190190
startActivity(i);
191191
break;
192192
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BubbleChartActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
163163
switch (item.getItemId()) {
164164
case R.id.viewGithub: {
165165
Intent i = new Intent(Intent.ACTION_VIEW);
166-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/BubbleChartActivity.java"));
166+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/BubbleChartActivity.java"));
167167
startActivity(i);
168168
break;
169169
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/CandleStickChartActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
155155
switch (item.getItemId()) {
156156
case R.id.viewGithub: {
157157
Intent i = new Intent(Intent.ACTION_VIEW);
158-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/CandleStickChartActivity.java"));
158+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/CandleStickChartActivity.java"));
159159
startActivity(i);
160160
break;
161161
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/CombinedChartActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
244244
switch (item.getItemId()) {
245245
case R.id.viewGithub: {
246246
Intent i = new Intent(Intent.ACTION_VIEW);
247-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/CombinedChartActivity.java"));
247+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/CombinedChartActivity.java"));
248248
startActivity(i);
249249
break;
250250
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/CubicLineChartActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
166166
switch (item.getItemId()) {
167167
case R.id.viewGithub: {
168168
Intent i = new Intent(Intent.ACTION_VIEW);
169-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/CubicLineChartActivity.java"));
169+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/CubicLineChartActivity.java"));
170170
startActivity(i);
171171
break;
172172
}

MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/DynamicalAddingActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
192192
switch (item.getItemId()) {
193193
case R.id.viewGithub: {
194194
Intent i = new Intent(Intent.ACTION_VIEW);
195-
i.setData(Uri.parse("https://github.com/PhilJay/MPAndroidChart/blob/master/MPChartExample/src/com/xxmassdeveloper/mpchartexample/DynamicalAddingActivity.java"));
195+
i.setData(Uri.parse("https://github.com/AppDevNext/AndroidChart/blob/master/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/DynamicalAddingActivity.java"));
196196
startActivity(i);
197197
break;
198198
}

0 commit comments

Comments
 (0)