- Moved operator related modules from core-java-lang-syntax to core-java-lang-operators
This commit is contained in:
vatsalgosar
2019-08-05 11:24:57 +05:30
committed by maibin
parent c8e517f6e8
commit f767e462f5
15 changed files with 0 additions and 63 deletions

View File

@@ -1,5 +0,0 @@
package com.baeldung.keyword;
public class Circle extends Round implements Shape {
}

View File

@@ -1,4 +0,0 @@
package com.baeldung.keyword;
public class Ring extends Round {
}

View File

@@ -1,4 +0,0 @@
package com.baeldung.keyword;
public class Round {
}

View File

@@ -1,4 +0,0 @@
package com.baeldung.keyword;
public interface Shape {
}

View File

@@ -1,4 +0,0 @@
package com.baeldung.keyword;
public class Triangle implements Shape {
}