Skip to content

Commit c9d8c02

Browse files
committed
Removed unnecessary inheritance
1 parent 74af5e7 commit c9d8c02

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

com/arrayfire/Algorithm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.arrayfire;
22

3-
class Algorithm extends ArrayFire {
3+
class Algorithm {
44

55
// Scalar return operations
66
private native static double sumAll(long a);

com/arrayfire/Arith.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.arrayfire;
22

3-
class Arith extends ArrayFire {
3+
class Arith {
44

55
// Binary operations
66
private native static long add(long a, long b);

com/arrayfire/Data.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.arrayfire;
22

3-
class Data extends ArrayFire {
3+
class Data {
44

55
private native static long createRanduArray(int[] dims, int type);
66

com/arrayfire/Image.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.arrayfire;
22

3-
class Image extends ArrayFire {
3+
class Image {
44

55
private native static long erode(long a, long b);
66

com/arrayfire/Signal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.arrayfire;
22

3-
class Signal extends ArrayFire {
3+
class Signal {
44

55
private native static long fft(long a, int dim0);
66

0 commit comments

Comments
 (0)