Skip to content

Commit

Permalink
Apply suggestions from the review
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuvindu committed Nov 3, 2023
1 parent cc94acb commit c50a4a4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ballerina/modules/soap11/soap11.bal
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public isolated client class Client {
remote isolated function sendReceive(xml|mime:Entity[] body, string action, map<string|string[]> headers = {},
string path = "", typedesc<xml|mime:Entity[]> T = <>)
returns T|Error = @java:Method {
'class: "org.soap.Soap",
'class: "io.ballerina.lib.soap.Soap",
name: "sendReceive11"
} external;

Expand Down
2 changes: 1 addition & 1 deletion ballerina/modules/soap12/soap12.bal
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public isolated client class Client {
remote isolated function sendReceive(xml|mime:Entity[] body, string? action = (), map<string|string[]> headers = {},
string path = "", typedesc<xml|mime:Entity[]> T = <>)
returns T|Error = @java:Method {
'class: "org.soap.Soap",
'class: "io.ballerina.lib.soap.Soap",
name: "sendReceive12"
} external;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// specific language governing permissions and limitations
// under the License.

package org.soap;
package io.ballerina.lib.soap;

import io.ballerina.runtime.api.Future;
import io.ballerina.runtime.api.async.Callback;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// specific language governing permissions and limitations
// under the License.

package org.soap;
package io.ballerina.lib.soap;

import io.ballerina.runtime.api.Environment;
import io.ballerina.runtime.api.Future;
Expand Down
2 changes: 1 addition & 1 deletion spotbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
-->
<FindBugsFilter>
<Match>
<Class name="org.soap.ExecutionCallback"/>
<Class name="io.ballerina.lib.soap.ExecutionCallback"/>
<Bug pattern="DM_EXIT"/>
</Match>
</FindBugsFilter>

0 comments on commit c50a4a4

Please sign in to comment.