Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Test Resource Files with Formatting Changes #265

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ group=io.ballerina
version=0.9.0-SNAPSHOT

#dependency
ballerinaLangVersion=2201.8.5
ballerinaLangVersion=2201.9.0-20240319-165400-2b26c405
puppycrawlCheckstyleVersion=10.12.1
githubJohnrengelmanShadowVersion=8.1.1
underCouchDownloadVersion=5.4.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public distinct service class Student {
*ContactInfo;
*Info;
*ExamInfo;

# The id of the student, unique identifier
resource function get id() returns int {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public distinct service class Book {

public distinct service class Student {
*Info;

resource function get id() returns int {
}

Expand All @@ -27,6 +28,7 @@ public distinct service class Student {

public distinct service class Teacher {
*Info;

resource function get id() returns int {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public type Book record {|

public distinct service class Student {
*Info;

resource function get id() returns int {
}

Expand All @@ -26,6 +27,7 @@ public distinct service class Student {

public distinct service class Teacher {
*Info;

resource function get id() returns int {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public type Info distinct service object {

public distinct service class Student {
*Info;

resource function get id() returns int {
}

Expand All @@ -30,6 +31,7 @@ public distinct service class Student {

public distinct service class Teacher {
*AddressInfo;

resource function get id() returns int {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public type Info distinct service object {
public distinct service class Student {
*Info;
*ExamInfo;

resource function get id() returns int {
}

Expand All @@ -33,6 +34,7 @@ public distinct service class Student {
public distinct service class Teacher {
*Info;
*ContactInfo;

resource function get id() returns int {
}

Expand Down
Loading