Commit 0edd0efd3c34fadb7813de5cc3d58578085e59e0
1 parent
d1bc44b4
Exists in
master
and in
1 other branch
CRITÉRIOS DE SUCESSO (1/3) Reverter alteração
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%20Web/Fontes/avaliador-api@10183 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/main/java/br/com/checker/emag/core/BehaviorEvaluation.java
... | ... | @@ -111,8 +111,8 @@ List<Occurrence> occurrences = new ArrayList<Occurrence>(); |
111 | 111 | } else if (onmouseup != null && onkeyup == null) { |
112 | 112 | occurrences.add(this.buildOccurrence("2.1", true, element.toString(), element, "1")); |
113 | 113 | |
114 | - /*} else if (onclick != null && onkeypress == null) { | |
115 | - occurrences.add(this.buildOccurrence("2.1", true, element.toString(), element, "1"));*/ | |
114 | + } else if (onclick != null && onkeypress == null) { | |
115 | + occurrences.add(this.buildOccurrence("2.1", true, element.toString(), element, "1")); | |
116 | 116 | |
117 | 117 | } else if (onmouseover != null && onfocus == null) { |
118 | 118 | occurrences.add(this.buildOccurrence("2.1", true, element.toString(), element, "1")); | ... | ... |