Skip to content

Commit 6319ab7

Browse files
committed
removed generated classes
1 parent 732be56 commit 6319ab7

47 files changed

Lines changed: 43 additions & 133 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Todo/war/WEB-INF/classes/log4j.properties

Lines changed: 0 additions & 24 deletions
This file was deleted.

de.vogella.algorithms.sort.quicksort/src/de/vogella/algorithms/sort/quicksort/Quicksort.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public void sort(int[] values) {
1818
private void quicksort(int low, int high) {
1919
int i = low, j = high;
2020
// Get the pivot element from the middle of the list
21-
int pivot = numbers[(low + high) / 2];
21+
int pivot = numbers[low + (high-low) / 2];
2222

2323
// Divide into two lists
2424
while (i <= j) {

de.vogella.android.contentprovider/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</activity>
1414

1515
</application>
16-
<uses-sdk android:minSdkVersion="5" />
16+
<uses-sdk android:minSdkVersion="8" />
1717

1818
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
1919
</manifest>
-3.14 KB
Binary file not shown.
Binary file not shown.
-10.5 KB
Binary file not shown.
-1.11 KB
Binary file not shown.
-867 Bytes
Binary file not shown.
-867 Bytes
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)