Skip to content

Commit 595fee3

Browse files
committed
remove new, useless @internal comments
1 parent 9efd040 commit 595fee3

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

packages/data-connect/src/api/DataConnect.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ export class DataConnect {
122122
this._isUsingGeneratedSdk = true;
123123
}
124124
}
125-
// @internal
126125
_setCallerSdkType(callerSdkType: CallerSdkType): void {
127126
this._callerSdkType = callerSdkType;
128127
if (this._initialized) {

packages/data-connect/src/network/transport/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export interface DataConnectTransport {
5353
): Promise<{ data: T; errors: Error[] }>;
5454
useEmulator(host: string, port?: number, sslEnabled?: boolean): void;
5555
onTokenChanged: (token: string | null) => void;
56-
// @internal
5756
_setCallerSdkType(callerSdkType: CallerSdkType): void;
5857
}
5958

packages/data-connect/src/network/transport/rest.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ export class RESTTransport implements DataConnectTransport {
214214
return taskResult;
215215
};
216216

217-
// @internal
218217
_setCallerSdkType(callerSdkType: CallerSdkType): void {
219218
this._callerSdkType = callerSdkType;
220219
}

0 commit comments

Comments
 (0)