This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
prevent webtrans doclist colun header clicks from opening editor
- Loading branch information
1 parent
d926af1
commit 256fe12
Showing
2 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
server/zanata-war/src/main/java/org/zanata/webtrans/shared/util/ObjectUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| package org.zanata.webtrans.shared.util; | ||
|
|
||
| public class ObjectUtil | ||
| { | ||
| public static boolean equals(Object object1, Object object2) | ||
| { | ||
| return (object1 == null ? object2 == null : object1.equals(object2)); | ||
| } | ||
| } |