Skip to content

Commit f50effc

Browse files
committed
Reduce diffs by organizing imports as was done in the generation
1 parent 03d95e7 commit f50effc

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

provider/core_boot_volume_resource.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ package provider
44

55
import (
66
"context"
7+
"log"
78
"strconv"
8-
9-
"github.com/hashicorp/terraform/helper/schema"
10-
119
"strings"
1210

13-
"log"
14-
11+
"github.com/hashicorp/terraform/helper/schema"
1512
"github.com/hashicorp/terraform/helper/validation"
13+
1614
oci_core "github.com/oracle/oci-go-sdk/core"
1715
)
1816

provider/core_dhcp_options_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strings"
99

1010
"github.com/hashicorp/terraform/helper/schema"
11-
1211
"github.com/hashicorp/terraform/helper/validation"
12+
1313
oci_core "github.com/oracle/oci-go-sdk/core"
1414
)
1515

provider/core_instance_resource.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313

1414
"github.com/hashicorp/terraform/helper/schema"
1515
"github.com/hashicorp/terraform/helper/validation"
16+
1617
oci_core "github.com/oracle/oci-go-sdk/core"
1718
)
1819

provider/core_volume_group_resource.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ import (
66
"context"
77
"log"
88
"strconv"
9+
"strings"
910

1011
"github.com/hashicorp/terraform/helper/schema"
1112
"github.com/hashicorp/terraform/helper/validation"
1213

13-
"strings"
14-
1514
oci_core "github.com/oracle/oci-go-sdk/core"
1615
)
1716

0 commit comments

Comments
 (0)