| Index: editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/correction/CorrectionProposal.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/correction/CorrectionProposal.java b/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/correction/CorrectionProposal.java
|
| index f4a1c62b08d22f134ceac09e248eb75c2de3bc0c..2f0df56fefad7a09ba70df31b772ae805ba7058e 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/correction/CorrectionProposal.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine.services/src/com/google/dart/engine/services/correction/CorrectionProposal.java
|
| @@ -23,7 +23,7 @@ public class CorrectionProposal {
|
|
|
| public CorrectionProposal(CorrectionKind kind, Object... arguments) {
|
| this.kind = kind;
|
| - this.name = String.format(kind.getName(), arguments);
|
| + this.name = String.format(kind.getMessage(), arguments);
|
| }
|
|
|
| /**
|
|
|