File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
main/java/org/apache/sysds/runtime/io/hdf5
test/java/org/apache/sysds/test/usertest/pythonapi Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public void writeLong(long l) {
9999 }
100100 }
101101
102- public strictfp Double getNewVal (double d ) {
102+ public Double getNewVal (double d ) {
103103 return d ;
104104 }
105105
Original file line number Diff line number Diff line change 3737/** Simple tests to verify startup of Python Gateway server happens without crashes */
3838public class StartupTest {
3939 private LoggingUtils .TestAppender appender ;
40+ @ SuppressWarnings ("removal" )
4041 private SecurityManager sm ;
4142
4243 @ Before
44+ @ SuppressWarnings ("removal" )
4345 public void setUp () {
4446 appender = LoggingUtils .overwrite ();
4547 sm = System .getSecurityManager ();
@@ -49,6 +51,7 @@ public void setUp() {
4951 }
5052
5153 @ After
54+ @ SuppressWarnings ("removal" )
5255 public void tearDown () {
5356 LoggingUtils .reinsert (appender );
5457 System .setSecurityManager (sm );
@@ -129,6 +132,7 @@ public void testStartupCorrect() throws Exception {
129132 );
130133 }
131134
135+ @ SuppressWarnings ("removal" )
132136 class NoExitSecurityManager extends SecurityManager {
133137 @ Override
134138 public void checkPermission (Permission perm ) { }
You can’t perform that action at this time.
0 commit comments