Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c9d8c02

Browse filesBrowse files
committed
Removed unnecessary inheritance
1 parent 74af5e7 commit c9d8c02
Copy full SHA for c9d8c02

File tree

5 files changed

+5
-5
lines changed
Filter options

5 files changed

+5
-5
lines changed

‎com/arrayfire/Algorithm.java

Copy file name to clipboardExpand all lines: com/arrayfire/Algorithm.java
+1-1
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

Copy file name to clipboardExpand all lines: com/arrayfire/Arith.java
+1-1
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

Copy file name to clipboardExpand all lines: com/arrayfire/Data.java
+1-1
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

Copy file name to clipboardExpand all lines: com/arrayfire/Image.java
+1-1
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

Copy file name to clipboardExpand all lines: com/arrayfire/Signal.java
+1-1
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.