Skip to content

Commit

Permalink
Move PhysicalNameGenerator out of the util subdirectory.
Browse files Browse the repository at this point in the history
  • Loading branch information
skinny85 committed May 3, 2019
1 parent b7c6f7c commit 85108d7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cdk/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ export * from './synthesis';
export * from './resource';
export * from './physical-name';
export * from './resource-identifiers';
export * from './util/physical-name-generator';
export * from './physical-name-generator';
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import crypto = require('crypto');
import { IResource } from "../resource";
import { Stack } from '../stack';
import { IResource } from "./resource";
import { Stack } from './stack';

export class PhysicalNameGenerator {
public static from(resource: IResource): PhysicalNameGenerator {
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cdk/lib/resource.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Construct, IConstruct } from './construct';
import { PhysicalName } from './physical-name';
import { PhysicalNameGenerator } from "./util/physical-name-generator";
import { PhysicalNameGenerator } from "./physical-name-generator";

/**
* Interface for the Resource construct.
Expand Down

0 comments on commit 85108d7

Please sign in to comment.