Skip to content

Commit 883d70c

Browse files
committed
Migrate development environment from Windows to macOS and continue project updates
- Shifted primary development environment from Windows to macOS to ensure better performance, stability, and streamlined workflow for Java development. - Removed OS-specific metadata and ensured platform-agnostic project compatibility. - Normalized line endings to LF for cross-platform consistency. - Verified and adjusted file paths, permissions, and encoding settings to suit macOS environment. - Cleaned up unnecessary Windows-generated files and updated Git configuration accordingly. - Future commits and development will now be managed entirely from macOS. This migration ensures a cleaner, more consistent setup moving forward and prepares the project for scalable development across Unix-based systems. Future development will continue on macOS for a smoother, Unix-based experience. Signed-off-by: Someshdiwan <[email protected]>
1 parent 090d125 commit 883d70c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
abstract class Test1
2+
{
3+
abstract void show();
4+
void display()
5+
{
6+
System.out.println("Hello Woeld!");
7+
}
8+
}
9+
10+
class Test2 extends Test1
11+
{
12+
void show()
13+
{
14+
System.out.println("Welcome");
15+
}
16+
}
17+
18+
class Abs1
19+
{
20+
public static void main(String[] args)
21+
{
22+
Test2 t = new Test2();
23+
t.display();
24+
t.show();
25+
}
26+
}

0 commit comments

Comments
 (0)