File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
toolkit/jetbrains-core/src/software/aws/toolkits/resources Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ object AmazonQBundle {
1010 private const val BUNDLE_FQN : String = " software.aws.toolkits.resources.AmazonQBundle"
1111 private val BUNDLE = DynamicBundle (AmazonQBundle ::class .java, BUNDLE_FQN )
1212
13- fun message (key : @PropertyKey(resourceBundle = BUNDLE_FQN ) String , vararg params : Any ) =
13+ fun message (@PropertyKey(resourceBundle = BUNDLE_FQN ) key : String , vararg params : Any ) =
1414 BUNDLE .getMessage(key, * params)
1515
16- fun messagePointer (key : @PropertyKey(resourceBundle = BUNDLE_FQN ) String , vararg params : Any ) =
16+ fun messagePointer (@PropertyKey(resourceBundle = BUNDLE_FQN ) key : String , vararg params : Any ) =
1717 BUNDLE .getLazyMessage(key, * params)
1818}
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ object AwsToolkitBundle {
1010 private const val BUNDLE_FQN : String = " software.aws.toolkits.resources.MessagesBundle"
1111 private val BUNDLE = DynamicBundle (AwsToolkitBundle ::class .java, BUNDLE_FQN )
1212
13- fun message (key : @PropertyKey(resourceBundle = BUNDLE_FQN ) String , vararg params : Any ) =
13+ fun message (@PropertyKey(resourceBundle = BUNDLE_FQN ) key : String , vararg params : Any ) =
1414 BUNDLE .getMessage(key, * params)
1515
16- fun messagePointer (key : @PropertyKey(resourceBundle = BUNDLE_FQN ) String , vararg params : Any ) =
16+ fun messagePointer (@PropertyKey(resourceBundle = BUNDLE_FQN ) key : String , vararg params : Any ) =
1717 BUNDLE .getLazyMessage(key, * params)
1818}
You can’t perform that action at this time.
0 commit comments